Skip to content

Commit

Permalink
[SQUASHME] Fix returncode
Browse files Browse the repository at this point in the history
  • Loading branch information
Flamefire committed Jul 21, 2020
1 parent bd018b1 commit 7eb13a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_scorep.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def call(arguments, expected_returncode=0, env=None):
returncode = p.returncode
if returncode:
print(stderr)
assert out.returncode == expected_returncode
assert returncode == expected_returncode
return stdout.decode("utf-8"), stderr.decode("utf-8")


Expand Down

0 comments on commit 7eb13a2

Please sign in to comment.