Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
adithyachakilam committed Oct 16, 2024
1 parent 9d86763 commit afddb22
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ public void testNoInitialStateWithAutoScaleOut() throws Exception
Thread.sleep(1 * 1000);
int taskCountAfterScale = supervisor.getIoConfig().getTaskCount();
Assert.assertEquals(2, taskCountAfterScale);
autoscaler.stop();
}

@Test
Expand Down Expand Up @@ -435,6 +436,7 @@ public void testNoInitialStateWithAutoScaleIn() throws Exception
Thread.sleep(1 * 1000);
int taskCountAfterScale = supervisor.getIoConfig().getTaskCount();
Assert.assertEquals(1, taskCountAfterScale);
autoscaler.stop();
}

@Test
Expand Down

0 comments on commit afddb22

Please sign in to comment.