Skip to content

Commit 9c98586

Browse files
committed
Format
1 parent f59335a commit 9c98586

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lldb/test/API/lang/cpp/libcxx-internals-recognizer/TestLibcxxInternalsRecognizer.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ def test_frame_recognizer(self):
6161
# Expect the correct parent frame
6262
func_name = thread.GetFrameAtIndex(frame_id).GetFunctionName()
6363
if isinstance(expected_parent, re.Pattern):
64-
self.assertTrue(expected_parent.search(func_name) is not None, f"'{expected_parent}' not found in '{func_name}'")
64+
self.assertTrue(
65+
expected_parent.search(func_name) is not None,
66+
f"'{expected_parent}' not found in '{func_name}'"
67+
)
6568
else:
6669
self.assertIn(expected_parent, func_name)
6770
frame_id = frame_id + 1

0 commit comments

Comments
 (0)