OSDN Git Service

[lldb][NFC] Fix a typo in TestCppMultipleInheritance
authorRaphael Isemann <teemperor@gmail.com>
Thu, 10 Dec 2020 09:56:46 +0000 (10:56 +0100)
committerRaphael Isemann <teemperor@gmail.com>
Thu, 10 Dec 2020 09:56:46 +0000 (10:56 +0100)
lldb/test/API/lang/cpp/multiple-inheritance/TestCppMultipleInheritance.py

index defd4bd..bc2b7a5 100644 (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")