From 406225331cd16055f82be57461396796d6d49ed6 Mon Sep 17 00:00:00 2001 From: Kotauskas Date: Mon, 15 Apr 2024 16:31:22 +0300 Subject: [PATCH] maybe that was a bit too much --- tests/os/unix/local_socket_fake_ns.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/os/unix/local_socket_fake_ns.rs b/tests/os/unix/local_socket_fake_ns.rs index eef210f..ab16992 100644 --- a/tests/os/unix/local_socket_fake_ns.rs +++ b/tests/os/unix/local_socket_fake_ns.rs @@ -12,7 +12,7 @@ fn test_inner(iter: u32) -> TestResult { .map(Arc::new) }); let (name, _listener) = listen_and_pick_name(&mut namegen, |nm| { - dbg!(ListenerOptions::new().name(nm.borrow()).create_sync()) + ListenerOptions::new().name(nm.borrow()).create_sync() })?; let name = Arc::try_unwrap(name).unwrap(); let _ = Stream::connect(name.borrow()).opname("client connect")?; @@ -24,7 +24,7 @@ fn test_inner(iter: u32) -> TestResult { fn local_socket_fake_ns() -> TestResult { test_wrapper(|| { // fucking macOS - let iterations = if cfg!(target_os = "macos") { 20736 } else { 12 }; + let iterations = if cfg!(target_os = "macos") { 432 } else { 12 }; for i in 0..iterations { test_inner(i)?; }