diff options
author | Tianjie Xu <xunchang@google.com> | 2018-11-15 07:09:22 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-11-15 07:09:22 +0100 |
commit | 4850d463a5da41642665763124c3b8d065461c49 (patch) | |
tree | 1b6042c9906d2487a990850ec0465551af33e434 /tests | |
parent | Merge "Use the non-LTO/PGO hwbinder in recovery_component_test" am: 87e2fc3831 (diff) | |
parent | Merge "Adjust the background text image width to reduce its size" (diff) | |
download | android_bootable_recovery-4850d463a5da41642665763124c3b8d065461c49.tar android_bootable_recovery-4850d463a5da41642665763124c3b8d065461c49.tar.gz android_bootable_recovery-4850d463a5da41642665763124c3b8d065461c49.tar.bz2 android_bootable_recovery-4850d463a5da41642665763124c3b8d065461c49.tar.lz android_bootable_recovery-4850d463a5da41642665763124c3b8d065461c49.tar.xz android_bootable_recovery-4850d463a5da41642665763124c3b8d065461c49.tar.zst android_bootable_recovery-4850d463a5da41642665763124c3b8d065461c49.zip |
Diffstat (limited to 'tests')
-rw-r--r-- | tests/component/resources_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/component/resources_test.cpp b/tests/component/resources_test.cpp index 54329db22..d7fdb8fa0 100644 --- a/tests/component/resources_test.cpp +++ b/tests/component/resources_test.cpp @@ -101,7 +101,7 @@ TEST_P(ResourcesTest, ValidateLocale) { EXPECT_LT(0, len) << "Locale string should be non-empty."; EXPECT_NE(0, row[5]) << "Locale string is missing."; - ASSERT_GT(png_->height(), y + 1 + h) << "Locale: " << kLocale << " is not found in the file."; + ASSERT_GE(png_->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)); |