From f6748b24d4d731b3b60d97c20a1a29e66472ce66 Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Wed, 11 Aug 2021 12:26:22 +0200 Subject: [PATCH] [lldb][NFC] Fix small format error in TestCppVirtualFunctions --- .../API/lang/cpp/virtual-functions/TestCppVirtualFunctions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/API/lang/cpp/virtual-functions/TestCppVirtualFunctions.py b/lldb/test/API/lang/cpp/virtual-functions/TestCppVirtualFunctions.py index 32c4d3513974a..4cbbc86fd1db0 100644 --- a/lldb/test/API/lang/cpp/virtual-functions/TestCppVirtualFunctions.py +++ b/lldb/test/API/lang/cpp/virtual-functions/TestCppVirtualFunctions.py @@ -9,7 +9,7 @@ class TestCase(TestBase): def common_setup(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")) def test_call_on_base(self): self.common_setup()