Skip to content

Commit

Permalink
fix(EvalTest): make thread.sleep() longer to avoid flakyness
Browse files Browse the repository at this point in the history
  • Loading branch information
Skraye committed Sep 30, 2024
1 parent c0f6f52 commit 847fb0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void run() throws Exception {
RunContext runContext = TestsUtils.mockRunContext(runContextFactory, task, ImmutableMap.of());

Eval.Output runOutput = task.run(runContext);
Thread.sleep(100);
Thread.sleep(500);

LogEntry firstLog = receive.blockFirst();
assertThat(firstLog.getLevel(), is(Level.INFO));
Expand Down

0 comments on commit 847fb0d

Please sign in to comment.