Skip to content

Commit

Permalink
I had these flipped by accident
Browse files Browse the repository at this point in the history
  • Loading branch information
rkoumis committed Apr 19, 2024
1 parent 510ee3f commit 2004088
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analyzer/windows/tests/test_analyzer_process_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ def test_has_pid(self):
process_list.pids_notrack = [pid2]
self.assertTrue(process_list.has_pid(pid1))
self.assertTrue(process_list.has_pid(pid2))
self.assertFalse(process_list.has_pid(pid1, notrack=False))
self.assertTrue(process_list.has_pid(pid2, notrack=False))
self.assertTrue(process_list.has_pid(pid1, notrack=False))
self.assertFalse(process_list.has_pid(pid2, notrack=False))

def test_remove_pid(self):
"""Calling remove_pid should remove pid from process_list."""
Expand Down

0 comments on commit 2004088

Please sign in to comment.