mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-02-02 11:46:55 +01:00
Fewer default speed values
This commit is contained in:
parent
a73a932a7c
commit
44a7af8f73
@ -244,8 +244,8 @@ public class PreferencesTest {
|
||||
public void testPlaybackSpeeds() {
|
||||
clickPreference(R.string.playback_pref);
|
||||
clickPreference(R.string.playback_speed);
|
||||
onView(isRoot()).perform(waitForView(withText("0.75"), 1000));
|
||||
onView(withText("0.75")).check(matches(isDisplayed()));
|
||||
onView(isRoot()).perform(waitForView(withText("1.25"), 1000));
|
||||
onView(withText("1.25")).check(matches(isDisplayed()));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
@ -812,7 +812,7 @@ public class UserPreferences {
|
||||
}
|
||||
}
|
||||
// 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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user