diff --git a/lldb/test/API/commands/expression/diagnostics/TestExprDiagnostics.py b/lldb/test/API/commands/expression/diagnostics/TestExprDiagnostics.py index b476a807c6dc0..0cc505aedc4be 100644 --- a/lldb/test/API/commands/expression/diagnostics/TestExprDiagnostics.py +++ b/lldb/test/API/commands/expression/diagnostics/TestExprDiagnostics.py @@ -33,7 +33,7 @@ def test_source_and_caret_printing(self): self.assertIn( """ 1 | unknown_identifier - | ^ + | ^~~~~~~~~~~~~~~~~~ """, value.GetError().GetCString(), ) @@ -45,7 +45,7 @@ def test_source_and_caret_printing(self): self.assertIn( """ 1 | 1 + unknown_identifier - | ^ + | ^~~~~~~~~~~~~~~~~~ """, value.GetError().GetCString(), ) @@ -57,7 +57,7 @@ def test_source_and_caret_printing(self): self.assertIn( """ 2 | foobar +=1; - | ^ + | ^~~~~~ """, value.GetError().GetCString(), )