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 c9bdbdab70..91cea796b3 100644 --- a/runtime/class_linker_test.cc +++ b/runtime/class_linker_test.cc @@ -409,7 +409,7 @@ class ClassLinkerTest : public CommonRuntimeTest { void AssertDexFileClass(ObjPtr<mirror::ClassLoader> class_loader, const std::string& descriptor) REQUIRES_SHARED(Locks::mutator_lock_) { - ASSERT_TRUE(descriptor != nullptr); + ASSERT_FALSE(descriptor.empty()); Thread* self = Thread::Current(); StackHandleScope<1> hs(self); Handle<mirror::Class> klass( |