Skip to content

Commit 5279428

Browse files
committed
Fix windows cfg
1 parent d476606 commit 5279428

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unix_stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ fn unix_stream_shutdown_both() {
356356
let err = stream.write(DATA2).unwrap_err();
357357
#[cfg(unix)]
358358
assert_eq!(err.kind(), io::ErrorKind::BrokenPipe);
359-
#[cfg(window)]
359+
#[cfg(windows)]
360360
assert_eq!(err.kind(), io::ErrorKind::ConnectionAbroted);
361361

362362
// Close the connection to allow the remote to shutdown

0 commit comments

Comments
 (0)