Skip to content

Commit

Permalink
Merge pull request #189 from macisamuele/maci-fix-win
Browse files Browse the repository at this point in the history
Fix `run_command` to properly handle EOL on Windowd
  • Loading branch information
macisamuele authored Oct 12, 2023
2 parents f118bd8 + 037c133 commit dbc5cd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
@pytest.mark.parametrize(
"command, expected_status, expected_output, expected_stderr",
[
(["echo", "1"], 0, "1{}".format(os.linesep), ""),
(["echo", "1"], 0, "1\n", ""),
(["true"], 0, "", ""),
(["false"], 1, "", ""),
],
Expand Down

0 comments on commit dbc5cd7

Please sign in to comment.