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

Commit 91f97cb2 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Increase timeout for flaky work test" into ub-launcher3-master

parents 6e82910a d1c07797
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