From b9300ef8494264143534674b73f4d1dd12e0a941 Mon Sep 17 00:00:00 2001 From: vadimt Date: Wed, 8 May 2019 15:59:30 -0700 Subject: [PATCH] Not starting calculator from TaplTestsLauncher3.testAppIconLaunchFromAllAppsFromHome Not sure why, but starting calculator sometimes fails. Let's see if this changes anything. Change-Id: I2934a388afe7e95bdaeb38151a2676b3297b6e94 --- tests/src/com/android/launcher3/ui/TaplTestsLauncher3.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/src/com/android/launcher3/ui/TaplTestsLauncher3.java b/tests/src/com/android/launcher3/ui/TaplTestsLauncher3.java index 581e886b6e..7578dfff2e 100644 --- a/tests/src/com/android/launcher3/ui/TaplTestsLauncher3.java +++ b/tests/src/com/android/launcher3/ui/TaplTestsLauncher3.java @@ -24,7 +24,6 @@ import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; -import android.content.Intent; import android.util.Log; import androidx.test.filters.LargeTest; @@ -241,9 +240,8 @@ public class TaplTestsLauncher3 extends AbstractLauncherUiTest { } public static void runIconLaunchFromAllAppsTest(AbstractLauncherUiTest test, AllApps allApps) { - final AppIcon app = allApps.getAppIcon("Calculator"); - assertNotNull("AppIcon.launch returned null", app.launch( - test.resolveSystemApp(Intent.CATEGORY_APP_CALCULATOR))); + final AppIcon app = allApps.getAppIcon("TestActivity7"); + assertNotNull("AppIcon.launch returned null", app.launch(getAppPackageName())); test.executeOnLauncher(launcher -> assertTrue( "Launcher activity is the top activity; expecting another activity to be the top " + "one",