Fix indentation of latest TIL

This commit is contained in:
jbranchaud
2026-07-29 01:23:23 -05:00
parent 1225349978
commit 300a22f18b
@@ -23,18 +23,18 @@ def test_base_help_message():
help_result = runner.invoke(cli, ["--help"])
output = textwrap.dedent("""\
Usage: vmt [OPTIONS] COMMAND [ARGS]...
Usage: vmt [OPTIONS] COMMAND [ARGS]...
Options:
-v, --verbose See extra output when running commands
--help Show this message and exit.
Options:
-v, --verbose See extra output when running commands
--help Show this message and exit.
Commands:
cancel
log
start
status
stop
Commands:
cancel
log
start
status
stop
""")
assert output in help_result.output
```