Fixed the new-syntax testcase to reflect how we

print string literals.

llvm-svn: 157213
This commit is contained in:
Sean Callanan 2012-05-21 22:25:12 +00:00
parent 246bb99397
commit 0061222ed8
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ class ObjCNewSyntaxTestCase(TestBase):
self.expect("expr -o -- @( 1 + 3 )", VARIABLES_DISPLAYED_CORRECTLY,
substrs = ["NSNumber", "4"])
self.expect("expr -o -- @(\"Hello world\" + 6)", VARIABLES_DISPLAYED_CORRECTLY,
substrs = ["NSString", "@\"world\""])
substrs = ["NSString", "world"])
if __name__ == '__main__':