diff options
-rw-r--r-- | lldb/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py b/lldb/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py index e1f295c..74f7b9ad 100644 --- a/lldb/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py +++ b/lldb/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py @@ -58,8 +58,8 @@ class PtrRef2TypedefTestCase(TestBase): self.runCmd('type summary add --cascade true -s "IntRRef" "int &&"') self.expect("frame variable x", substrs = ['(Foo *) x = 0x','IntPointer']) - self.expect("frame variable y", substrs = ['(Foo &const) y = 0x','IntLRef']) - self.expect("frame variable z", substrs = ['(Foo &&const) z = 0x','IntRRef']) + self.expect("frame variable y", substrs = ['(Foo &) y = 0x','IntLRef']) + self.expect("frame variable z", substrs = ['(Foo &&) z = 0x','IntRRef']) if __name__ == '__main__': import atexit |