Remove the final KBS feature flags.

This commit is contained in:
Greyson Parrelli
2020-07-07 08:08:34 -04:00
parent eb02dacfdc
commit 33c527f15e
3 changed files with 1 additions and 37 deletions

View File

@@ -127,17 +127,4 @@ public class PinsForAllScheduleTest extends BaseUnitTest {
// THEN
assertTrue(result);
}
@Test
public void whenKillSwitchEnabled_whenIShouldDisplay_thenIExpectFalse() {
// GIVEN
when(registrationValues.pinWasRequiredAtRegistration()).thenReturn(false);
when(FeatureFlags.pinsForAllMegaphoneKillSwitch()).thenReturn(true);
// WHEN
boolean result = testSubject.shouldDisplay(0, 0, 0, System.currentTimeMillis());
// THEN
assertFalse(result);
}
}