diff options
Diffstat (limited to 'lldb/test/lang/objc/objc-static-method/TestObjCStaticMethod.py')
-rw-r--r-- | lldb/test/lang/objc/objc-static-method/TestObjCStaticMethod.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/lang/objc/objc-static-method/TestObjCStaticMethod.py b/lldb/test/lang/objc/objc-static-method/TestObjCStaticMethod.py index 9a5923cae4d..726e45eeac3 100644 --- a/lldb/test/lang/objc/objc-static-method/TestObjCStaticMethod.py +++ b/lldb/test/lang/objc/objc-static-method/TestObjCStaticMethod.py @@ -61,7 +61,7 @@ class TestObjCStaticMethod(TestBase): cmd_value = frame.EvaluateExpression ("(char *) sel_getName (_cmd)") self.assertTrue (cmd_value.IsValid()) sel_name = cmd_value.GetSummary() - self.assertFalse (sel_name == "doSomethingWithString:", "Got the right value for the selector as string.") + self.assertTrue (sel_name == "doSomethingWithString:", "Got the right value for the selector as string.") if __name__ == '__main__': import atexit |