Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Feb 9, 2024
1 parent f9cbd7d commit 87308ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public void timeTakenFor500SignInParallel() throws Exception {
System.out.println("Retry counter: " + retryCounter.get());
assertEquals(counter.get(), numberOfThreads);

if (retryCounter.get() == 0) {
if (retryCounter.get() != 0) {
process.kill();
assertNotNull(process.checkOrWaitForEvent(ProcessState.PROCESS_STATE.STOPPED));
continue; // retry
Expand Down

0 comments on commit 87308ff

Please sign in to comment.