Ver Fonte

Code analytics fix

Signed-off-by: alperozturk <alper_ozturk@proton.me>
alperozturk há 11 meses atrás
pai
commit
8dbe86ab34

+ 6 - 2
app/src/androidTest/java/com/nmc/android/ui/LauncherActivityIT.kt

@@ -44,8 +44,12 @@ class LauncherActivityIT : AbstractIT() {
             scenario.onActivity { _ ->
                 onIdleSync {
                     onView(withId(R.id.ivSplash)).check(matches(isCompletelyDisplayed()))
-                    onView(withId(R.id.splashScreenBold)).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.GONE)))
-                    onView(withId(R.id.splashScreenNormal)).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.GONE)))
+                    onView(
+                        withId(R.id.splashScreenBold)
+                    ).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.GONE)))
+                    onView(
+                        withId(R.id.splashScreenNormal)
+                    ).check(matches(withEffectiveVisibility(ViewMatchers.Visibility.GONE)))
                 }
             }
         }