Delete snooze_interval preference

This commit is contained in:
Quentin Hibon
2021-02-09 09:52:55 +01:00
parent bc461e1239
commit 8790c0e87b
42 changed files with 1 additions and 121 deletions

View File

@@ -119,9 +119,6 @@ class PreferencesTest : BaseUnitTest() {
assertFalse(prefs.shouldMakeNotificationsLed())
prefs.setNotificationsLed(true)
assertTrue(prefs.shouldMakeNotificationsLed())
assertThat(prefs.snoozeInterval, equalTo(15L))
prefs.setSnoozeInterval(30)
assertThat(prefs.snoozeInterval, equalTo(30L))
}
@Test