We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ff75c0 commit e593cbeCopy full SHA for e593cbe
analyzer/windows/tests/test_analyzer.py
@@ -977,9 +977,8 @@ def test_handle_process(self, mock_process):
977
# TODO add a couple of mocks
978
random_pid = random.randint(1, 99999999)
979
random_tid = random.randint(1, 9999999)
980
- suspended = 1
981
- data = bytes(f"{suspended}:{random_pid},{random_tid}".encode())
982
- # This produces something like b"1:910271,1819029"
+ data = bytes(f"{random_pid},{random_tid}".encode())
+ # This produces something like b"910271,1819029"
983
with patch("analyzer.INJECT_LIST", []):
984
self.pipe_handler._handle_process(data=data)
985
self.assertEqual(1, len(analyzer.INJECT_LIST))
0 commit comments