summaryrefslogtreecommitdiff
path: root/app/src/androidTest/java/de/test/antennapod/ui/VideoplayerActivityTest.java
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2021-05-14 22:07:28 +0200
committerByteHamster <info@bytehamster.com>2021-05-14 22:07:35 +0200
commitac0580400ed1c8f8025df9e7fd0d12d892aafac9 (patch)
treef2151063ff7f53da410c206b7cf8c1b07ca2a626 /app/src/androidTest/java/de/test/antennapod/ui/VideoplayerActivityTest.java
parent33ad1a91f0c125bb999642167a931f9a05b3384b (diff)
downloadAntennaPod-ac0580400ed1c8f8025df9e7fd0d12d892aafac9.zip
Switched video player to ViewBinding
Diffstat (limited to 'app/src/androidTest/java/de/test/antennapod/ui/VideoplayerActivityTest.java')
-rw-r--r--app/src/androidTest/java/de/test/antennapod/ui/VideoplayerActivityTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/androidTest/java/de/test/antennapod/ui/VideoplayerActivityTest.java b/app/src/androidTest/java/de/test/antennapod/ui/VideoplayerActivityTest.java
index ab16d7603..0dae22db1 100644
--- a/app/src/androidTest/java/de/test/antennapod/ui/VideoplayerActivityTest.java
+++ b/app/src/androidTest/java/de/test/antennapod/ui/VideoplayerActivityTest.java
@@ -31,6 +31,6 @@ public class VideoplayerActivityTest {
@Test
public void testStartActivity() throws Exception {
activityTestRule.launchActivity(new Intent());
- onView(withId(R.id.videoframe)).check(matches(isDisplayed()));
+ onView(withId(R.id.videoPlayerContainer)).check(matches(isDisplayed()));
}
}