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

Commit d1c07797 authored by Samuel Fufa's avatar Samuel Fufa
Browse files

Increase timeout for flaky work test

Bug:149867607
Change-Id: Ic746a4857a47fc29372d19419ddfa6eaebd06f87
parent 2eac20e3
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -73,11 +73,10 @@ public class WorkTabTest extends AbstractLauncherUiTest {
        mDevice.pressHome();
        waitForLauncherCondition("Launcher didn't start", Objects::nonNull);
        executeOnLauncher(launcher -> launcher.getStateManager().goToState(ALL_APPS));

        waitForLauncherCondition("Personal tab is missing",
                launcher -> launcher.getAppsView().isPersonalTabVisible());
                launcher -> launcher.getAppsView().isPersonalTabVisible(), 60000);
        waitForLauncherCondition("Work tab is missing",
                launcher -> launcher.getAppsView().isWorkTabVisible());
                launcher -> launcher.getAppsView().isWorkTabVisible(), 60000);
    }

    @Test