Skip to content

Commit 44d4e9f

Browse files
authored
(#15122) m4: use positional arguments when calling self.run()
1 parent 435e2fd commit 44d4e9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recipes/m4/all/test_package/conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ def test(self):
3232
self.run(f"m4 -R {self.source_folder}/frozen.m4f {self.source_folder}/test.m4")
3333

3434
output = StringIO()
35-
self.run(f"m4 -P {self._m4_input_path}", output=output)
35+
self.run(f"m4 -P {self._m4_input_path}", output)
3636
assert "Harry, Jr. met Sally" in output.getvalue()

0 commit comments

Comments
 (0)