We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e4e911 commit 5c46c49Copy full SHA for 5c46c49
1 file changed
test/test_nodely_bin.py
@@ -136,7 +136,8 @@ def test_check_output(
136
node_package_command_output_regex):
137
command = Command(node_package_command)
138
assert node_package_command_output_regex.match(
139
- command.check_output(node_package_command_args))
+ command.check_output(
140
+ node_package_command_args, universal_newlines=True))
141
142
out, err = capfd.readouterr()
143
assert not out and not err
@@ -159,7 +160,7 @@ def test__call__(
159
160
161
162
- command(*node_package_command_args))
163
+ command(*node_package_command_args, universal_newlines=True))
164
165
166
0 commit comments