summaryrefslogtreecommitdiffstats
path: root/tests/unit/zip_test.cpp
diff options
context:
space:
mode:
authorKelvin Zhang <zhangkelvin@google.com>2020-09-16 20:06:12 +0200
committerKelvin Zhang <zhangkelvin@google.com>2020-09-16 20:21:37 +0200
commit4f81130039f6a312eba2027b3594a2be282f6b3a (patch)
tree8a910b26d07884180bcef5f5f48781ae642cf99e /tests/unit/zip_test.cpp
parentMerge "Merge Android R" (diff)
downloadandroid_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.tar
android_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.tar.gz
android_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.tar.bz2
android_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.tar.lz
android_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.tar.xz
android_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.tar.zst
android_bootable_recovery-4f81130039f6a312eba2027b3594a2be282f6b3a.zip
Diffstat (limited to 'tests/unit/zip_test.cpp')
-rw-r--r--tests/unit/zip_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/zip_test.cpp b/tests/unit/zip_test.cpp
index ec9585c79..e065bb859 100644
--- a/tests/unit/zip_test.cpp
+++ b/tests/unit/zip_test.cpp
@@ -37,7 +37,7 @@ TEST(ZipTest, OpenFromMemory) {
ASSERT_EQ(0, OpenArchiveFromMemory(map.addr, map.length, zip_path.c_str(), &handle));
static constexpr const char* BINARY_PATH = "META-INF/com/google/android/update-binary";
- ZipEntry binary_entry;
+ ZipEntry64 binary_entry;
// Make sure the package opens correctly and its entry can be read.
ASSERT_EQ(0, FindEntry(handle, BINARY_PATH, &binary_entry));