forked from OSchip/llvm-project
Fixed the new-syntax testcase to reflect how we
print string literals. llvm-svn: 157213
This commit is contained in:
parent
246bb99397
commit
0061222ed8
|
@ -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__':
|
||||
|
|
Loading…
Reference in New Issue