Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove tracing-subscriber dep
Browse files Browse the repository at this point in the history
sinui0 committed May 17, 2024
1 parent 1634351 commit e2b207c
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion uid-mux/Cargo.toml
Original file line number Diff line number Diff line change
@@ -28,4 +28,3 @@ tokio = { workspace = true, features = [
"rt-multi-thread",
"macros",
] }
tracing-subscriber = { workspace = true }
1 change: 0 additions & 1 deletion uid-mux/src/yamux.rs
Original file line number Diff line number Diff line change
@@ -513,7 +513,6 @@ mod tests {
// Test the case where the server closes the connection while the client is opening a new stream.
#[tokio::test]
async fn test_yamux_server_close_early() {
tracing_subscriber::fmt::init();
let (client_io, server_io) = duplex(1024);
let client = Yamux::new(client_io.compat(), Config::default(), Mode::Client);
let server = Yamux::new(server_io.compat(), Config::default(), Mode::Server);

0 comments on commit e2b207c

Please sign in to comment.