diff options
author | Sen Jiang <senj@google.com> | 2016-12-14 23:00:44 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-12-14 23:00:44 +0100 |
commit | 2f8f6ec0fc2af4d4afd7d19837442222a1342156 (patch) | |
tree | eb2f2cab3101dbdba307df52910ee9d0fb8bbdf4 /tests/component | |
parent | Merge "updater: Fix the operator order." (diff) | |
parent | Merge "Add a stub recovery UI." (diff) | |
download | android_bootable_recovery-2f8f6ec0fc2af4d4afd7d19837442222a1342156.tar android_bootable_recovery-2f8f6ec0fc2af4d4afd7d19837442222a1342156.tar.gz android_bootable_recovery-2f8f6ec0fc2af4d4afd7d19837442222a1342156.tar.bz2 android_bootable_recovery-2f8f6ec0fc2af4d4afd7d19837442222a1342156.tar.lz android_bootable_recovery-2f8f6ec0fc2af4d4afd7d19837442222a1342156.tar.xz android_bootable_recovery-2f8f6ec0fc2af4d4afd7d19837442222a1342156.tar.zst android_bootable_recovery-2f8f6ec0fc2af4d4afd7d19837442222a1342156.zip |
Diffstat (limited to '')
-rw-r--r-- | tests/component/verifier_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/component/verifier_test.cpp b/tests/component/verifier_test.cpp index 60a78f5c3..33aadb3fb 100644 --- a/tests/component/verifier_test.cpp +++ b/tests/component/verifier_test.cpp @@ -40,7 +40,7 @@ RecoveryUI* ui = NULL; class MockUI : public RecoveryUI { - void Init() { } + bool Init() { return true; } void SetStage(int, int) { } void SetLocale(const char*) { } void SetBackground(Icon /*icon*/) { } |