Skip to content

Commit

Permalink
fix missing function argument in Windows test (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas authored Feb 21, 2020
1 parent 8504571 commit 9c2dfa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_executor_sequential.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def delayed_sigint():
os.getpid(),
signal.SIGINT if sys.platform != 'win32' else signal.CTRL_C_EVENT)
if sys.platform == 'win32':
os.kill(signal.CTRL_C_EVENT)
os.kill(os.getpid(), signal.CTRL_C_EVENT)

thread = Thread(target=delayed_sigint)
try:
Expand Down

0 comments on commit 9c2dfa7

Please sign in to comment.