diff --git a/actix-server/tests/test_server.rs b/actix-server/tests/test_server.rs index 58a78688..b51504d4 100644 --- a/actix-server/tests/test_server.rs +++ b/actix-server/tests/test_server.rs @@ -437,7 +437,6 @@ async fn test_service_restart() { let _ = h.join().unwrap(); } -#[cfg(unix)] #[actix_rt::test] async fn test_worker_restart() { use actix_service::{Service, ServiceFactory}; @@ -457,8 +456,6 @@ async fn test_worker_restart() { fn new_service(&self, _: Self::Config) -> Self::Future { let counter = self.0.fetch_add(1, Ordering::Relaxed); - println!("counter is {}", counter); - Box::pin(async move { Ok(TestService(counter)) }) } }