From 39446a83995e03d88b35018a45680f8145f493da Mon Sep 17 00:00:00 2001 From: Kayou Date: Wed, 2 Dec 2020 22:24:36 +0100 Subject: [PATCH] Update test_process.py --- test/test_process.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_process.py b/test/test_process.py index c18cdbe7..c3bc7cc8 100644 --- a/test/test_process.py +++ b/test/test_process.py @@ -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"