We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f59335a commit 9c98586Copy full SHA for 9c98586
lldb/test/API/lang/cpp/libcxx-internals-recognizer/TestLibcxxInternalsRecognizer.py
@@ -61,7 +61,10 @@ def test_frame_recognizer(self):
61
# Expect the correct parent frame
62
func_name = thread.GetFrameAtIndex(frame_id).GetFunctionName()
63
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}'")
+ self.assertTrue(
65
+ expected_parent.search(func_name) is not None,
66
+ f"'{expected_parent}' not found in '{func_name}'"
67
+ )
68
else:
69
self.assertIn(expected_parent, func_name)
70
frame_id = frame_id + 1
0 commit comments