Skip to content

Commit

Permalink
maybe that was a bit too much
Browse files Browse the repository at this point in the history
  • Loading branch information
kotauskas committed Apr 15, 2024
1 parent 12968bc commit 4062253
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/os/unix/local_socket_fake_ns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")?;
Expand All @@ -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)?;
}
Expand Down

0 comments on commit 4062253

Please sign in to comment.