diff options
Diffstat (limited to 'lldb/test/python_api/symbol-context')
-rw-r--r-- | lldb/test/python_api/symbol-context/TestSymbolContext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/python_api/symbol-context/TestSymbolContext.py b/lldb/test/python_api/symbol-context/TestSymbolContext.py index b601920e10f..ad0a55b22f4 100644 --- a/lldb/test/python_api/symbol-context/TestSymbolContext.py +++ b/lldb/test/python_api/symbol-context/TestSymbolContext.py @@ -68,7 +68,7 @@ class SymbolContextAPITestCase(TestBase): substrs = [os.path.join(self.mydir, 'a.out')]) compileUnit = context.GetCompileUnit() - self.expect(repr(compileUnit), "The compile unit should match", exe=False, + self.expect(str(compileUnit), "The compile unit should match", exe=False, substrs = [os.path.join(self.mydir, 'main.c')]) function = context.GetFunction() |