From 9b5508db215c89f4274eb3f102be3d1f853c46dc Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 18 Oct 2024 15:14:01 -0400 Subject: [PATCH] cli tests --- bbot/test/test_step_1/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbot/test/test_step_1/test_cli.py b/bbot/test/test_step_1/test_cli.py index f34b7c147..3344f6d62 100644 --- a/bbot/test/test_step_1/test_cli.py +++ b/bbot/test/test_step_1/test_cli.py @@ -243,7 +243,7 @@ async def test_cli_args(monkeypatch, caplog, capsys, clean_default_config): result = await cli._main() out, err = capsys.readouterr() assert result == None - assert "Target:\n -t TARGET [TARGET ...]" in out + assert "-t TARGET [TARGET ...]" in out # list modules monkeypatch.setattr("sys.argv", ["bbot", "-l"])