summaryrefslogtreecommitdiffstats
path: root/tests/component
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2018-08-28 04:17:15 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-08-28 04:17:15 +0200
commit3f288e438965767a1600bbf49495971ea03f3878 (patch)
tree52cbaff31cc4737469b1a66e1a2e51ca8494b7cc /tests/component
parentMerge "uncrypt: Depend on commonly used shared libs." (diff)
parentMerge "Remove otafault" (diff)
downloadandroid_bootable_recovery-3f288e438965767a1600bbf49495971ea03f3878.tar
android_bootable_recovery-3f288e438965767a1600bbf49495971ea03f3878.tar.gz
android_bootable_recovery-3f288e438965767a1600bbf49495971ea03f3878.tar.bz2
android_bootable_recovery-3f288e438965767a1600bbf49495971ea03f3878.tar.lz
android_bootable_recovery-3f288e438965767a1600bbf49495971ea03f3878.tar.xz
android_bootable_recovery-3f288e438965767a1600bbf49495971ea03f3878.tar.zst
android_bootable_recovery-3f288e438965767a1600bbf49495971ea03f3878.zip
Diffstat (limited to '')
-rw-r--r--tests/component/updater_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/component/updater_test.cpp b/tests/component/updater_test.cpp
index c4f3176f9..b253abccf 100644
--- a/tests/component/updater_test.cpp
+++ b/tests/component/updater_test.cpp
@@ -272,7 +272,7 @@ TEST_F(UpdaterTest, file_getprop) {
expect(nullptr, "file_getprop(\"arg1\", \"arg2\", \"arg3\")", kArgsParsingFailure);
// File doesn't exist.
- expect(nullptr, "file_getprop(\"/doesntexist\", \"key1\")", kFileGetPropFailure);
+ expect(nullptr, "file_getprop(\"/doesntexist\", \"key1\")", kFreadFailure);
// Reject too large files (current limit = 65536).
TemporaryFile temp_file1;