Skip to content

Commit

Permalink
and for windows that does not fork anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
jonwright committed Feb 13, 2024
1 parent 74e1dc0 commit b093d2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_forking.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def run_test_fun(function, env=None):
args = [sys.executable, __file__, function]
proc = Popen(args, stdin=PIPE, stdout=PIPE, stderr=PIPE, env=env)
stdout, stderr = proc.communicate()
return stdout.encode(), stderr.encode()
return stdout.decode(), stderr.decode()


def omp_call(N=1024):
Expand Down

0 comments on commit b093d2d

Please sign in to comment.