Skip to content

Commit

Permalink
test: thread waiting timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
ParanoidUser committed Aug 2, 2023
1 parent 5fb3aa6 commit adf4d94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kata/7-kyu/simple-socket-client/test/SolutionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ void sample() {
server.start();
client.start();
try {
server.join();
client.join();
server.join(100);
client.join(100);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit adf4d94

Please sign in to comment.