diff --git a/monkey/tests/unit_tests/infection_monkey/exploit/test_powershell.py b/monkey/tests/unit_tests/infection_monkey/exploit/test_powershell.py
index f75c57f17..21a0bdeb3 100644
--- a/monkey/tests/unit_tests/infection_monkey/exploit/test_powershell.py
+++ b/monkey/tests/unit_tests/infection_monkey/exploit/test_powershell.py
@@ -1,3 +1,4 @@
+import threading
 from io import BytesIO
 from unittest.mock import MagicMock
 
@@ -43,6 +44,7 @@ def powershell_arguments():
         "current_depth": 2,
         "telemetry_messenger": MagicMock(),
         "agent_repository": mock_agent_repository,
+        "interrupt": threading.Event(),
     }
     return arguments