aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago Aboy Solanes <solanes@google.com>2024-02-16 09:24:48 +0000
committerSantiago Aboy Solanes <solanes@google.com>2024-02-16 09:25:20 +0000
commitc0cf163bdc5c4e649d73ecf179d3601689461c90 (patch)
treeae8ef562a40297f677bd745db2f528d1e435cde6
parent45e9a24a53ce2cf8449d37e17364f7753de7492d (diff)
downloadcsuite-c0cf163bdc5c4e649d73ecf179d3601689461c90.tar.gz
Add missing `s` which was making the script fail
Bug: 325514816 Change-Id: I9d947feb8e1d13b53c5868deb14cc43a6c57e4d0
-rw-r--r--test_scripts/src/main/java/com/android/art/tests/AppCompileLaunchTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_scripts/src/main/java/com/android/art/tests/AppCompileLaunchTest.java b/test_scripts/src/main/java/com/android/art/tests/AppCompileLaunchTest.java
index 62f3e4c..5524fc9 100644
--- a/test_scripts/src/main/java/com/android/art/tests/AppCompileLaunchTest.java
+++ b/test_scripts/src/main/java/com/android/art/tests/AppCompileLaunchTest.java
@@ -307,7 +307,7 @@ public class AppCompileLaunchTest extends BaseHostJUnit4Test {
deviceUtils.unfreezeRotation();
mApkInstaller.uninstallAllInstalledPackages();
} catch (ApkInstallerException | DeviceNotAvailableException e) {
- CLog.e("Failed to tearDown the test for %", mPackageName);
+ CLog.e("Failed to tearDown the test for %s", mPackageName);
// Do not throw to fail the test here as it's not compile related
Assume.assumeNoException(e);
}