We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 936f4b1 commit ee570daCopy full SHA for ee570da
tests/test_cli_pa.py
@@ -11,7 +11,7 @@ def test_main_command_without_args_prints_help():
11
[],
12
)
13
assert result.exit_code == 0
14
- tidied_output = " ".join([line.replace("│", "").strip() for line in result.stdout.split("\n")])
+ tidied_output = " ".join([line.replace("│", "").strip() for line in result.output.split("\n")])
15
assert "This is a new experimental PythonAnywhere cli client." in tidied_output
16
assert "Makes Django Girls tutorial projects deployment easy" in tidied_output
17
assert "Perform some operations on files" in tidied_output
0 commit comments