Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
Signed-off-by: James Sturtevant <[email protected]>
  • Loading branch information
jsturtevant committed Feb 28, 2023
1 parent c1171ec commit 65af714
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/sync-test.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
use std::{process::{Command}, time::Duration, io::{BufReader, BufRead}};
use std::{
io::{BufRead, BufReader},
process::Command,
time::Duration,
};

#[test]
fn run_sync_example() -> Result<(), Box<dyn std::error::Error>> {
Expand Down Expand Up @@ -38,7 +42,7 @@ fn run_sync_example() -> Result<(), Box<dyn std::error::Error>> {
}
}
}

// be sure to clean up the server, the client should have run to completion
server.kill()?;
assert!(client_succeeded);
Expand Down

0 comments on commit 65af714

Please sign in to comment.