diff options
Diffstat (limited to 'runtime/class_linker_test.cc')
-rw-r--r-- | runtime/class_linker_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/class_linker_test.cc b/runtime/class_linker_test.cc index 1a91abe1ed..2a7cbaa991 100644 --- a/runtime/class_linker_test.cc +++ b/runtime/class_linker_test.cc @@ -1522,7 +1522,7 @@ TEST_F(ClassLinkerTest, RegisterDexFileName) { ASSERT_TRUE(dex_cache != nullptr); } // Make a copy of the dex cache and change the name. - dex_cache.Assign(dex_cache->Clone(soa.Self())->AsDexCache()); + dex_cache.Assign(mirror::Object::Clone(dex_cache, soa.Self())->AsDexCache()); const uint16_t data[] = { 0x20AC, 0x20A1 }; Handle<mirror::String> location(hs.NewHandle(mirror::String::AllocFromUtf16(soa.Self(), arraysize(data), |