From 65af7143bd0a5e4b62623f805e355270f8258fdf Mon Sep 17 00:00:00 2001 From: James Sturtevant Date: Mon, 27 Feb 2023 16:01:22 -0800 Subject: [PATCH] fix clippy Signed-off-by: James Sturtevant --- tests/sync-test.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/sync-test.rs b/tests/sync-test.rs index 87b69c74..9115fb13 100644 --- a/tests/sync-test.rs +++ b/tests/sync-test.rs @@ -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> { @@ -38,7 +42,7 @@ fn run_sync_example() -> Result<(), Box> { } } } - + // be sure to clean up the server, the client should have run to completion server.kill()?; assert!(client_succeeded);