Skip to content

Commit 32bee7c

Browse files
committed
[LLDB] Fix Python formatting
1 parent 7d65214 commit 32bee7c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lldb/test/API/functionalities/asan/TestMemoryHistory.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,7 @@ def check_traces(self, skip_line_numbers=False):
5959
# Set breakpoint: after free, but before bug
6060
def set_breakpoint(self, target):
6161
bkpt = target.BreakpointCreateByLocation("main.c", self.line_breakpoint)
62-
self.assertGreater(
63-
bkpt.GetNumLocations(), 0, "Set the breakpoint successfully"
64-
)
62+
self.assertGreater(bkpt.GetNumLocations(), 0, "Set the breakpoint successfully")
6563

6664
def run_to_breakpoint(self, target):
6765
self.set_breakpoint(target)

0 commit comments

Comments
 (0)