testPauseForInterruptions was failing, looking for the Auto Delete string.
It should have been looking for the pause playback string.
This commit is contained in:
parent
7727caf9f4
commit
50e8d25c66
|
@ -231,7 +231,7 @@ public class PreferencesTest extends ActivityInstrumentationTestCase2<Preference
|
||||||
return pauseForFocusLoss != UserPreferences.shouldPauseForFocusLoss();
|
return pauseForFocusLoss != UserPreferences.shouldPauseForFocusLoss();
|
||||||
}
|
}
|
||||||
}, Timeout.getLargeTimeout());
|
}, Timeout.getLargeTimeout());
|
||||||
solo.clickOnText(solo.getString(R.string.pref_auto_delete_title));
|
solo.clickOnText(solo.getString(R.string.pref_pausePlaybackForFocusLoss_title));
|
||||||
solo.waitForCondition(new Condition() {
|
solo.waitForCondition(new Condition() {
|
||||||
@Override
|
@Override
|
||||||
public boolean isSatisfied() {
|
public boolean isSatisfied() {
|
||||||
|
|
Loading…
Reference in New Issue