Skip to content

Commit 802d475

Browse files
committed
libstd: "target_os = win32", not "target_os = windows". rs=bustage
1 parent f38e972 commit 802d475

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/net_tcp.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1319,7 +1319,7 @@ pub mod test {
13191319
}
13201320
// Strange failure on Windows. --pcwalton
13211321
#[test]
1322-
#[ignore(cfg(target_os = "windows"))]
1322+
#[ignore(cfg(target_os = "win32"))]
13231323
fn test_gl_tcp_ipv4_server_client_reader_writer() {
13241324
impl_gl_tcp_ipv4_server_client_reader_writer();
13251325
}
@@ -1360,7 +1360,7 @@ pub mod test {
13601360
}
13611361
#[test]
13621362
#[ignore(cfg(target_os = "linux"))]
1363-
#[ignore(cfg(target_os = "windows"))]
1363+
#[ignore(cfg(target_os = "win32"))]
13641364
fn test_gl_tcp_ipv4_server_client_reader_writer() {
13651365
impl_gl_tcp_ipv4_server_client_reader_writer();
13661366
}

0 commit comments

Comments
 (0)