Fewer default speed values

This commit is contained in:
ByteHamster 2021-10-13 21:54:25 +02:00
parent a73a932a7c
commit 44a7af8f73
2 changed files with 3 additions and 3 deletions

View File

@ -244,8 +244,8 @@ public class PreferencesTest {
public void testPlaybackSpeeds() { public void testPlaybackSpeeds() {
clickPreference(R.string.playback_pref); clickPreference(R.string.playback_pref);
clickPreference(R.string.playback_speed); clickPreference(R.string.playback_speed);
onView(isRoot()).perform(waitForView(withText("0.75"), 1000)); onView(isRoot()).perform(waitForView(withText("1.25"), 1000));
onView(withText("0.75")).check(matches(isDisplayed())); onView(withText("1.25")).check(matches(isDisplayed()));
} }
@Test @Test

View File

@ -812,7 +812,7 @@ public class UserPreferences {
} }
} }
// If this preference hasn't been set yet, return the default options // If this preference hasn't been set yet, return the default options
return Arrays.asList(0.75f, 1.0f, 1.25f, 1.5f, 1.75f, 2.0f); return Arrays.asList(1.0f, 1.25f, 1.5f);
} }
public static String getMediaPlayer() { public static String getMediaPlayer() {