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

Commit ee96d750 authored by vadimt's avatar vadimt Committed by android-build-merger
Browse files

Improvements in getting workspace app icon

am: 6b466783

Change-Id: I47cd2161e5c3b9dd2d2350bcb4606f346d79adf8
parents e5f95bd2 6b466783
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -190,7 +190,7 @@ public class TaplTestsLauncher3 extends AbstractLauncherUiTest {
                launcher -> assertTrue("ensureScrollable didn't make workspace scrollable",
                        isWorkspaceScrollable(launcher)));
        assertNotNull("ensureScrollable didn't add Chrome app",
                workspace.tryGetWorkspaceAppIcon("Chrome"));
                workspace.getWorkspaceAppIcon("Chrome"));

        // Test flinging workspace.
        workspace.flingBackward();
@@ -206,7 +206,7 @@ public class TaplTestsLauncher3 extends AbstractLauncherUiTest {
        assertTrue("Launcher internal state is not Home", isInState(LauncherState.NORMAL));

        // Test starting a workspace app.
        final AppIcon app = workspace.tryGetWorkspaceAppIcon("Chrome");
        final AppIcon app = workspace.getWorkspaceAppIcon("Chrome");
        assertNotNull("No Chrome app in workspace", app);
    }