[lldb][NFC] Fix a typo in TestCppMultipleInheritance

This commit is contained in:
Raphael Isemann 2020-12-10 10:56:46 +01:00
parent eeb713bbe2
commit 4df4edb6ad
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ class TestCase(TestBase):
def test(self):
self.build()
lldbutil.run_to_source_breakpoint(self,"// break here", lldb.SBFileSpec("main.cpp"))
lldbutil.run_to_source_breakpoint(self, "// break here", lldb.SBFileSpec("main.cpp"))
# Member access
self.expect_expr("C.Base1::m_base", result_type="int", result_value="11")