Author: Med Ismail Bennani
Date: 2022-03-18T21:59:11-07:00
New Revision: acdd41b4590935e39208a941fbac7889d778e8e5

URL: 
https://github.com/llvm/llvm-project/commit/acdd41b4590935e39208a941fbac7889d778e8e5
DIFF: 
https://github.com/llvm/llvm-project/commit/acdd41b4590935e39208a941fbac7889d778e8e5.diff

LOG: [lldb/test] Fix typo in eventlistener.py (NFC)

Signed-off-by: Med Ismail Bennani <medismail.benn...@gmail.com>

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/lldb/packages/Python/lldbsuite/test/eventlistener.py 
b/lldb/packages/Python/lldbsuite/test/eventlistener.py
index 336d65a3f067a..2bf53fe2d75b5 100644
--- a/lldb/packages/Python/lldbsuite/test/eventlistener.py
+++ b/lldb/packages/Python/lldbsuite/test/eventlistener.py
@@ -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()
@@ -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
 


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to