summaryrefslogtreecommitdiffstats
path: root/tests/manual/recovery_test.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-12-21 15:48:53 +0100
committerandroid-build-merger <android-build-merger@google.com>2017-12-21 15:48:53 +0100
commit77e8137720a486adda3a68103bf0894210324fed (patch)
treef5413c369845604f518505523d807cc1b9f4e482 /tests/manual/recovery_test.cpp
parentMerge "Let update_verifier work on non-AB update devices" am: 3fe230a1e4 am: 4b7ed5a71b (diff)
parentMerge "StartsWith allows a std::string prefix now." am: 80ccac2fff (diff)
downloadandroid_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.tar
android_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.tar.gz
android_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.tar.bz2
android_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.tar.lz
android_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.tar.xz
android_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.tar.zst
android_bootable_recovery-77e8137720a486adda3a68103bf0894210324fed.zip
Diffstat (limited to 'tests/manual/recovery_test.cpp')
-rw-r--r--tests/manual/recovery_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/recovery_test.cpp b/tests/manual/recovery_test.cpp
index 92c6ef2d4..64e3b59e6 100644
--- a/tests/manual/recovery_test.cpp
+++ b/tests/manual/recovery_test.cpp
@@ -209,7 +209,7 @@ TEST_P(ResourceTest, ValidateLocale) {
ASSERT_GT(height, y + 1 + h) << "Locale: " << kLocale << " is not found in the file.";
char* loc = reinterpret_cast<char*>(&row[5]);
if (matches_locale(loc, kLocale.c_str())) {
- EXPECT_TRUE(android::base::StartsWith(loc, kLocale.c_str()));
+ EXPECT_TRUE(android::base::StartsWith(loc, kLocale));
break;
} else {
for (int i = 0; i < h; ++i, ++y) {