summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2020-05-27 07:09:59 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2020-05-27 07:09:59 +0000
commit881eaef9474267028c5578db551f6d98efabb007 (patch)
treea6b75b46b095993dce13911d381486ecfe2e2c5f
parent4550e7714c7baba3d2245ed3ab6ef00fc33b90f5 (diff)
parent112eb255ea03650d612a084441d061d1cf8f88d2 (diff)
downloadplatform_system_apex-881eaef9474267028c5578db551f6d98efabb007.tar.gz
platform_system_apex-881eaef9474267028c5578db551f6d98efabb007.tar.bz2
platform_system_apex-881eaef9474267028c5578db551f6d98efabb007.zip
Merge "Fix ApexTestCases.ApexFileTest#VerifyApexVerity" into rvc-dev
-rw-r--r--apexd/apex_file_test.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/apexd/apex_file_test.cpp b/apexd/apex_file_test.cpp
index a086388c..711d0246 100644
--- a/apexd/apex_file_test.cpp
+++ b/apexd/apex_file_test.cpp
@@ -93,8 +93,10 @@ TEST(ApexFileTest, VerifyApexVerity) {
EXPECT_EQ(std::string("368a22e64858647bc45498e92f749f85482ac468"
"50ca7ec8071f49dfa47a243c"),
data.salt);
- EXPECT_EQ(std::string("705d8ec15be38fe416ed75045056434132758008"),
- data.root_digest);
+ EXPECT_EQ(
+ std::string(
+ "8e841019e41e8c40bca6dd6304cbf163ea257ba0a268304832c4105eba1c2747"),
+ data.root_digest);
}
// TODO: May consider packaging a debug key in debug builds (again).