Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cb5b7335 authored by Vadim Tryshev's avatar Vadim Tryshev
Browse files

Fix a typo

Bug: 187761685
Test: presubmit
Flag: N/A
Change-Id: Ib2f5bfde644cf4489f71d4207c3e8eb1936f8742
parent 6eb4af3f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@ public abstract class AbstractLauncherUiTest {

    private static boolean sDumpWasGenerated = false;
    private static boolean sActivityLeakReported = false;
    private static boolean sSeenKeygard = false;
    private static boolean sSeenKeyguard = false;

    private static final String SYSTEMUI_PACKAGE = "com.android.systemui";

@@ -260,9 +260,9 @@ public abstract class AbstractLauncherUiTest {
    }

    private static void verifyKeyguardInvisible() {
        final boolean keyguardAlreadyVisible = sSeenKeygard;
        final boolean keyguardAlreadyVisible = sSeenKeyguard;

        sSeenKeygard = sSeenKeygard
        sSeenKeyguard = sSeenKeyguard
                || !TestHelpers.wait(
                Until.gone(By.res(SYSTEMUI_PACKAGE, "keyguard_status_view")), 60000);

@@ -270,7 +270,7 @@ public abstract class AbstractLauncherUiTest {
                "Keyguard is visible, which is likely caused by a crash in SysUI, seeing keyguard"
                        + " for the first time = "
                        + !keyguardAlreadyVisible,
                sSeenKeygard);
                sSeenKeyguard);
    }

    @After