Skip to content

Commit 08a918d

Browse files
committed
Fix format errors in Python tests.
1 parent 42c52f3 commit 08a918d

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

lldb/test/API/commands/frame/var-dil/basics/GlobalVariableLookup/TestFrameVarDILGlobalVariableLookup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ class TestFrameVarDILGlobalVariableLookup(TestBase):
2020

2121
def test_frame_var(self):
2222
self.build()
23-
lldbutil.run_to_source_breakpoint(self, "Set a breakpoint here",
24-
lldb.SBFileSpec("main.cpp"))
23+
lldbutil.run_to_source_breakpoint(
24+
self, "Set a breakpoint here", lldb.SBFileSpec("main.cpp")
25+
)
2526

2627
self.expect("settings set target.experimental.use-DIL true", substrs=[""])
2728
self.expect_var_path("globalVar", type="int", value="-559038737") # 0xDEADBEEF

lldb/test/API/commands/frame/var-dil/basics/InstanceVariables/TestFrameVarDILInstanceVariables.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ class TestFrameVarDILInstanceVariables(TestBase):
2020

2121
def test_frame_var(self):
2222
self.build()
23-
lldbutil.run_to_source_breakpoint(self, "Set a breakpoint here",
24-
lldb.SBFileSpec("main.cpp"))
23+
lldbutil.run_to_source_breakpoint(
24+
self, "Set a breakpoint here", lldb.SBFileSpec("main.cpp")
25+
)
2526

2627
self.expect("settings set target.experimental.use-DIL true", substrs=[""])
2728
self.expect_var_path("this", type="TestMethods *")

lldb/test/API/commands/frame/var-dil/basics/LocalVars/TestFrameVarDILLocalVars.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ class TestFrameVarDILLocalVars(TestBase):
2020

2121
def test_frame_var(self):
2222
self.build()
23-
lldbutil.run_to_source_breakpoint(self, "Set a breakpoint here",
24-
lldb.SBFileSpec("main.cpp"))
23+
lldbutil.run_to_source_breakpoint(
24+
self, "Set a breakpoint here", lldb.SBFileSpec("main.cpp")
25+
)
2526

2627
self.expect("settings set target.experimental.use-DIL true", substrs=[""])
2728
self.expect_var_path("a", value="1")

0 commit comments

Comments
 (0)