diff options
author | ByteHamster <info@bytehamster.com> | 2019-09-29 17:06:55 +0200 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2019-10-04 11:24:35 +0200 |
commit | 272abb9d1948918434ea218daff03883d47edb07 (patch) | |
tree | 0c5a92dc3471473178734ad1749df8b045d3d849 | |
parent | 933790b0d3068532bdbd6b5b4856e6d49d3dfbdd (diff) | |
download | AntennaPod-272abb9d1948918434ea218daff03883d47edb07.zip |
Fixed preferences tests
-rw-r--r-- | app/src/androidTest/java/de/test/antennapod/EspressoTestUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/androidTest/java/de/test/antennapod/EspressoTestUtils.java b/app/src/androidTest/java/de/test/antennapod/EspressoTestUtils.java index d3eec623e..f895b4d5e 100644 --- a/app/src/androidTest/java/de/test/antennapod/EspressoTestUtils.java +++ b/app/src/androidTest/java/de/test/antennapod/EspressoTestUtils.java @@ -113,7 +113,7 @@ public class EspressoTestUtils { } public static void clickPreference(@StringRes int title) { - onView(withId(R.id.list)).perform( + onView(withId(R.id.recycler_view)).perform( RecyclerViewActions.actionOnItem(hasDescendant(withText(title)), click())); } |