Skip to content

Commit

Permalink
[lldb/test] Fix typo in eventlistener.py (NFC)
Browse files Browse the repository at this point in the history
Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
  • Loading branch information
medismailben committed Mar 19, 2022
1 parent 41f74bc commit acdd41b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lldb/packages/Python/lldbsuite/test/eventlistener.py
Expand Up @@ -35,7 +35,7 @@ def setUp(self):
self.listener_thread.start()

def tearDown(self):
# Broadcast a eBroadcastBitStopListenerThread` event so the background
# Broadcast a `eBroadcastBitStopListenerThread` event so the background
# thread stops listening to events, then join the background thread.
self.broadcaster.BroadcastEventByType(self.eBroadcastBitStopListenerThread)
self.listener_thread.join()
Expand Down Expand Up @@ -65,7 +65,7 @@ def _fetch_events(self):

# This is why we unwrap the function from the instance
# method object calling `__func__` instead.
ret_args = self.event_data_extractor.__func__(event);
ret_args = self.event_data_extractor.__func__(event)
if not ret_args:
continue

Expand Down

0 comments on commit acdd41b

Please sign in to comment.