diff options
author | ByteHamster <info@bytehamster.com> | 2021-05-14 22:07:28 +0200 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2021-05-14 22:07:35 +0200 |
commit | ac0580400ed1c8f8025df9e7fd0d12d892aafac9 (patch) | |
tree | f2151063ff7f53da410c206b7cf8c1b07ca2a626 /app/src/androidTest | |
parent | 33ad1a91f0c125bb999642167a931f9a05b3384b (diff) | |
download | AntennaPod-ac0580400ed1c8f8025df9e7fd0d12d892aafac9.zip |
Switched video player to ViewBinding
Diffstat (limited to 'app/src/androidTest')
-rw-r--r-- | app/src/androidTest/java/de/test/antennapod/ui/VideoplayerActivityTest.java | 2 |
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())); } } |