Skip to content

Commit 9b257aa

Browse files
committed
Format python file.
1 parent d137137 commit 9b257aa

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lldb/test/API/commands/target/stop-hooks/TestStopHookScripted.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,15 @@ def test_stop_hooks_scripted_wrong_func(self):
6666

6767
def test_stop_hooks_scripted_right_lines(self):
6868
"""Test that a scripted stop hook fires when there is a function match"""
69-
self.stop_hooks_scripted(5, "-I 0 -f main.c -l 1 -e %d" % (self.main_start_line))
69+
self.stop_hooks_scripted(
70+
5, "-I 0 -f main.c -l 1 -e %d" % (self.main_start_line)
71+
)
7072

7173
def test_stop_hooks_scripted_wrong_lines(self):
7274
"""Test that a scripted stop hook doesn't fire when the function does not match"""
73-
self.stop_hooks_scripted(0, "-I 0 -f main.c -l %d -e 100" % (self.main_start_line))
75+
self.stop_hooks_scripted(
76+
0, "-I 0 -f main.c -l %d -e 100" % (self.main_start_line)
77+
)
7478

7579
def test_stop_hooks_scripted_auto_continue(self):
7680
"""Test that the --auto-continue flag works"""

0 commit comments

Comments
 (0)