summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorvadimt <vadimt@google.com>2019-06-14 11:46:12 -0700
committervadimt <vadimt@google.com>2019-06-14 11:46:12 -0700
commitce04131f1ad1d9510cb09f91d5093b9220e36995 (patch)
tree3dab089abf85b8e13e8730906bcac6f45a73e6b4 /tests
parent0868f0d3a859cc755a7e927a9cfc4fdf503316e0 (diff)
downloadandroid_packages_apps_Trebuchet-ce04131f1ad1d9510cb09f91d5093b9220e36995.tar.gz
android_packages_apps_Trebuchet-ce04131f1ad1d9510cb09f91d5093b9220e36995.tar.bz2
android_packages_apps_Trebuchet-ce04131f1ad1d9510cb09f91d5093b9220e36995.zip
Improving TAPL diags
Change-Id: Iee84b64618eebf80f755575c2d27660c12e9d7c2
Diffstat (limited to 'tests')
-rw-r--r--tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java b/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java
index 54b2a017f..2db9d0826 100644
--- a/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java
+++ b/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java
@@ -209,8 +209,8 @@ public final class LauncherInstrumentation {
final Context ctx = baseContext.createPackageContext("android", 0);
for (int i = 0; i < 100; ++i) {
final int currentInteractionMode = getCurrentInteractionMode(ctx);
- log("Interaction mode = " + currentInteractionMode);
final NavigationModel model = getNavigationModel(currentInteractionMode);
+ log("Interaction mode = " + currentInteractionMode + " (" + model + ")");
if (model != null) return model;
Thread.sleep(100);
}