diff options
Diffstat (limited to 'lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py')
| -rw-r--r-- | lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py b/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py index fd0016b36e3..82314355c9d 100644 --- a/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py +++ b/lldb/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py @@ -574,16 +574,14 @@ class ObjCDataFormatterTestCase(TestBase): self.runCmd("log timers enable") expect_strings = ['(CFGregorianUnits) cf_greg_units = 1 years, 3 months, 5 days, 12 hours, 5 minutes 7 seconds', '(CFRange) cf_range = location=4 length=4', - '(NSPoint) ns_point = (x=4, y=4)', + '(NSPoint) ns_point = (x = 4, y = 4)', '(NSRange) ns_range = location=4, length=4', - '(NSRect *) ns_rect_ptr = (x=1, y=1), (width=5, height=5)', - '(NSRect) ns_rect = (x=1, y=1), (width=5, height=5)', - '(NSRectArray) ns_rect_arr = ((x=1, y=1), (width=5, height=5)), ...', - '(NSSize) ns_size = (width=5, height=7)', - '(NSSize *) ns_size_ptr = (width=5, height=7)', - '(CGSize) cg_size = (width=1, height=6)', - '(CGPoint) cg_point = (x=2, y=7)', - '(CGRect) cg_rect = origin=(x=1, y=2) size=(width=7, height=7)', + '(NSRect) ns_rect = (origin = (x = 1, y = 1), size = (width = 5, height = 5))', + '(NSRectArray) ns_rect_arr = ((x = 1, y = 1), (width = 5, height = 5)), ...', + '(NSSize) ns_size = (width = 5, height = 7)', + '(CGSize) cg_size = (width = 1, height = 6)', + '(CGPoint) cg_point = (x = 2, y = 7)', + '(CGRect) cg_rect = (origin = (x = 1, y = 2), size = (width = 7, height = 7))', '(Rect) rect = (t=4, l=8, b=4, r=7)', '(Rect *) rect_ptr = (t=4, l=8, b=4, r=7)', '(Point) point = (v=7, h=12)', @@ -594,7 +592,7 @@ class ObjCDataFormatterTestCase(TestBase): if self.getArchitecture() in ['i386', 'x86_64']: expect_strings.append('(HIPoint) hi_point = (x=7, y=12)') - expect_strings.append('(HIRect) hi_rect = origin=(x=3, y=5) size=(width=4, height=6)') + expect_strings.append('(HIRect) hi_rect = origin=(x = 3, y = 5) size=(width = 4, height = 6)') expect_strings.append('(RGBColor) rgb_color = red=3 green=56 blue=35') expect_strings.append('(RGBColor *) rgb_color_ptr = red=3 green=56 blue=35') |

