Skip to content

Commit 8047be8

Browse files
authored
Improved task 1195.
1 parent 9eb6e31 commit 8047be8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/g1101_1200/s1195_fizz_buzz_multithreaded/FizzBuzzTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,6 @@ void fizzBuzz2() throws InterruptedException {
9191
})
9292
.start();
9393
TimeUnit.MILLISECONDS.sleep(500);
94-
assertThat(fizz[0] > 0, equalTo(true));
94+
assertThat(fizz[0] >= 0, equalTo(true));
9595
}
9696
}

0 commit comments

Comments
 (0)