diff options
Diffstat (limited to 'runtime/dex_file_test.cc')
-rw-r--r-- | runtime/dex_file_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/dex_file_test.cc b/runtime/dex_file_test.cc index d5304e7c3a..b86a02e18e 100644 --- a/runtime/dex_file_test.cc +++ b/runtime/dex_file_test.cc @@ -205,7 +205,7 @@ TEST_F(DexFileTest, GetChecksum) { uint32_t checksum; ScopedObjectAccess soa(Thread::Current()); std::string error_msg; - EXPECT_TRUE(DexFile::GetChecksum(GetLibCoreDexFileName().c_str(), &checksum, &error_msg)) + EXPECT_TRUE(DexFile::GetChecksum(GetLibCoreDexFileNames()[0].c_str(), &checksum, &error_msg)) << error_msg; EXPECT_EQ(java_lang_dex_file_->GetLocationChecksum(), checksum); } |