Skip to content

Commit acdd41b

Browse files
committed
[lldb/test] Fix typo in eventlistener.py (NFC)
Signed-off-by: Med Ismail Bennani <[email protected]>
1 parent 41f74bc commit acdd41b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/packages/Python/lldbsuite/test/eventlistener.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def setUp(self):
3535
self.listener_thread.start()
3636

3737
def tearDown(self):
38-
# Broadcast a eBroadcastBitStopListenerThread` event so the background
38+
# Broadcast a `eBroadcastBitStopListenerThread` event so the background
3939
# thread stops listening to events, then join the background thread.
4040
self.broadcaster.BroadcastEventByType(self.eBroadcastBitStopListenerThread)
4141
self.listener_thread.join()
@@ -65,7 +65,7 @@ def _fetch_events(self):
6565

6666
# This is why we unwrap the function from the instance
6767
# method object calling `__func__` instead.
68-
ret_args = self.event_data_extractor.__func__(event);
68+
ret_args = self.event_data_extractor.__func__(event)
6969
if not ret_args:
7070
continue
7171

0 commit comments

Comments
 (0)