Skip to content

Commit

Permalink
fix(#3400): test back
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Sep 28, 2024
1 parent ccac877 commit c5ee6de
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ void refusesConnectionViaWindowsSyscall() {
assert socket >= 0;
final SockaddrIn addr = new SockaddrIn(
(short) Winsock.AF_INET,
EOsocketTest.htons(8080),
Integer.reverseBytes(Winsock.INSTANCE.inet_addr("127.0.0.0"))
EOsocketTest.htons(1234),
Integer.reverseBytes(Winsock.INSTANCE.inet_addr(EOsocketTest.LOCALHOST))
);
final int connected = Winsock.INSTANCE.connect(socket, addr, addr.size());
MatcherAssert.assertThat(
Expand Down

0 comments on commit c5ee6de

Please sign in to comment.