summaryrefslogtreecommitdiff
path: root/runtime/vdex_file_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/vdex_file_test.cc')
-rw-r--r--runtime/vdex_file_test.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/vdex_file_test.cc b/runtime/vdex_file_test.cc
index 9d92b42140..565487e275 100644
--- a/runtime/vdex_file_test.cc
+++ b/runtime/vdex_file_test.cc
@@ -36,12 +36,11 @@ TEST_F(VdexFileTest, OpenEmptyVdex) {
tmp.GetFilename(),
/*writable=*/false,
/*low_4gb=*/false,
- /*unquicken=*/false,
&error_msg);
EXPECT_TRUE(vdex == nullptr);
vdex = VdexFile::Open(
- tmp.GetFilename(), /*writable=*/false, /*low_4gb=*/false, /*unquicken=*/ false, &error_msg);
+ tmp.GetFilename(), /*writable=*/false, /*low_4gb=*/false, &error_msg);
EXPECT_TRUE(vdex == nullptr);
}