Skip to content

Commit

Permalink
minor: fix tests without websocket feature (#215)
Browse files Browse the repository at this point in the history
Put test requiring WebSocket transport behind a feature guard.
  • Loading branch information
dmitry-markin authored Aug 23, 2024
1 parent 5c6b734 commit 060c40b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/transport/manager/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1776,8 +1776,9 @@ mod tests {
executor::DefaultExecutor,
transport::{dummy::DummyTransport, KEEP_ALIVE_TIMEOUT},
};
#[cfg(feature = "websocket")]
use std::borrow::Cow;
use std::{
borrow::Cow,
net::{Ipv4Addr, Ipv6Addr},
sync::Arc,
};
Expand Down Expand Up @@ -4082,6 +4083,7 @@ mod tests {
}
}

#[cfg(feature = "websocket")]
#[tokio::test]
async fn opening_errors_are_reported() {
let _ = tracing_subscriber::fmt()
Expand Down

0 comments on commit 060c40b

Please sign in to comment.