Skip to content

Commit

Permalink
Update test_subprocess_executor.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen authored Apr 15, 2024
1 parent a46e524 commit 1d43268
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_subprocess_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def test_shell_executor(self):
with SubprocessExecutor(max_workers=2) as exe:
f_1 = exe.submit(["echo", "test_1"], universal_newlines=True)
f_2 = exe.submit(["echo", "test_2"], universal_newlines=True)
f_3 = exe.submit(["sleep", "1", "&&", "echo", "test_3"], universal_newlines=True)
f_4 = exe.submit(["sleep", "1", "&&", "echo", "test_4"], universal_newlines=True)
f_3 = exe.submit(["sleep", "1;", "echo", "test_3"], universal_newlines=True)
f_4 = exe.submit(["sleep", "1;", "echo", "test_4"], universal_newlines=True)
self.assertFalse(f_1.done())
self.assertFalse(f_2.done())
self.assertFalse(f_3.done())
Expand Down

0 comments on commit 1d43268

Please sign in to comment.