Skip to content

Commit

Permalink
8234823: java/net/Socket/Timeouts.java testcase testTimedConnect2() f…
Browse files Browse the repository at this point in the history
…ails on Windows 10

Reviewed-by: alanb
  • Loading branch information
Michael-Mc-Mahon committed Dec 3, 2019
1 parent 6864634 commit a2fad13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/jdk/java/net/Socket/Timeouts.java
Expand Up @@ -74,7 +74,7 @@ public void testTimedConnect2() throws IOException {
try (Socket s = new Socket()) {
SocketAddress remote = Utils.refusingEndpoint();
try {
s.connect(remote, 2000);
s.connect(remote, 10000);
} catch (ConnectException expected) { }
}
}
Expand Down

0 comments on commit a2fad13

Please sign in to comment.