summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-05-24 07:44:44 +0200
committerandroid-build-merger <android-build-merger@google.com>2019-05-24 07:44:44 +0200
commita0c0e04163e0c88b985b45dc7553e716b96ab4c0 (patch)
treeb5d3c52ae588e83c2b26a762f01a796da2b5c73f /tests
parentMerge "Move off the Next ZipString overload." (diff)
parentMerge "Some clean ups to the updater" (diff)
downloadandroid_bootable_recovery-a0c0e04163e0c88b985b45dc7553e716b96ab4c0.tar
android_bootable_recovery-a0c0e04163e0c88b985b45dc7553e716b96ab4c0.tar.gz
android_bootable_recovery-a0c0e04163e0c88b985b45dc7553e716b96ab4c0.tar.bz2
android_bootable_recovery-a0c0e04163e0c88b985b45dc7553e716b96ab4c0.tar.lz
android_bootable_recovery-a0c0e04163e0c88b985b45dc7553e716b96ab4c0.tar.xz
android_bootable_recovery-a0c0e04163e0c88b985b45dc7553e716b96ab4c0.tar.zst
android_bootable_recovery-a0c0e04163e0c88b985b45dc7553e716b96ab4c0.zip
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/updater_test.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/updater_test.cpp b/tests/unit/updater_test.cpp
index 81229f50a..8993dd8b7 100644
--- a/tests/unit/updater_test.cpp
+++ b/tests/unit/updater_test.cpp
@@ -85,7 +85,7 @@ static void expect(const char* expected, const std::string& expr_str, CauseCode
}
static void expect(const char* expected, const std::string& expr_str, CauseCode cause_code) {
- Updater updater;
+ Updater updater(std::make_unique<UpdaterRuntime>(nullptr));
expect(expected, expr_str, cause_code, &updater);
}
@@ -133,6 +133,8 @@ static Value* BlobToString(const char* name, State* state,
class UpdaterTestBase {
protected:
+ UpdaterTestBase() : updater_(std::make_unique<UpdaterRuntime>(nullptr)) {}
+
void SetUp() {
RegisterBuiltins();
RegisterInstallFunctions();