Update test_process.py

This commit is contained in:
Kayou 2020-12-02 22:24:36 +01:00 committed by GitHub
parent f01466d6ef
commit 39446a8399
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -115,6 +115,6 @@ def test_call_async_output_kwargs(test_file, mocker):
def test_check_output(test_file):
assert check_output(["cat", str(test_file)], shell=False) == "foo\nbar\n"
assert check_output(["cat", str(test_file)], shell=False) == "foo\nbar"
assert check_output("cat %s" % str(test_file)) == "foo\nbar\n"
assert check_output("cat %s" % str(test_file)) == "foo\nbar"