Updated to reflect the updated tot r115023.  Will be filing a bug next.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@115046 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/foundation/TestObjCMethods.py b/test/foundation/TestObjCMethods.py
index 79d66c2..9396918 100644
--- a/test/foundation/TestObjCMethods.py
+++ b/test/foundation/TestObjCMethods.py
@@ -96,12 +96,12 @@
         # Lookup objc data type MyString and evaluate some expressions.
 
         self.expect("image lookup -t NSString", DATA_TYPES_DISPLAYED_CORRECTLY,
-            substrs = ["@interface NSString : NSObject@end"])
+            substrs = ['name = "NSString"',
+                       'clang_type = "@interface NSString@end"'])
 
         self.expect("image lookup -t MyString", DATA_TYPES_DISPLAYED_CORRECTLY,
-            substrs = ["@interface MyString : NSObject",
-                       "NSString * str;",
-                       "NSDate * date;"])
+            substrs = ['name = "MyString"',
+                       'clang_type = "@interface MyString'])
 
         self.expect("frame variable -s", VARIABLES_DISPLAYED_CORRECTLY,
             substrs = ["ARG: (MyString *) self",