Skip to content

Commit

Permalink
Fix missing tests u_u
Browse files Browse the repository at this point in the history
  • Loading branch information
castorm committed May 28, 2020
1 parent 84c2730 commit ffc7fea
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class AdaptableIntervalThrottlerConfigTest {

@Test
void whenTailIntervalMillis_thenDefault() {
assertThat(config(emptyMap()).getTailThrottler().getIntervalMillis()).isEqualTo(10000L);
assertThat(config(emptyMap()).getTailThrottler().getIntervalMillis()).isEqualTo(60000L);
}

@Test
Expand All @@ -42,7 +42,7 @@ void whenTailIntervalMillis_thenInitialized() {

@Test
void whenCatchupIntervalMillis_thenDefault() {
assertThat(config(emptyMap()).getCatchupThrottler().getIntervalMillis()).isEqualTo(1000L);
assertThat(config(emptyMap()).getCatchupThrottler().getIntervalMillis()).isEqualTo(30000L);
}

@Test
Expand Down

0 comments on commit ffc7fea

Please sign in to comment.