Skip to content

Commit 8dbe86a

Browse files
committed
Code analytics fix
Signed-off-by: alperozturk <alper_ozturk@proton.me>
1 parent b1d4850 commit 8dbe86a

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

app/src/androidTest/java/com/nmc/android/ui/LauncherActivityIT.kt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,12 @@ class LauncherActivityIT : AbstractIT() {
4444
scenario.onActivity { _ ->
4545
onIdleSync {
4646
onView(withId(R.id.ivSplash)).check(matches(isCompletelyDisplayed()))
47-
onView(withId(R.id.splashScreenBold)).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.GONE)))
48-
onView(withId(R.id.splashScreenNormal)).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.GONE)))
47+
onView(
48+
withId(R.id.splashScreenBold)
49+
).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.GONE)))
50+
onView(
51+
withId(R.id.splashScreenNormal)
52+
).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.GONE)))
4953
}
5054
}
5155
}

0 commit comments

Comments
 (0)