From e0cea60c87f62fbed69bf37cfc4428c33ecbd1a2 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 25 Mar 2019 14:00:41 -0400 Subject: [PATCH] fix cli test --- tests/unit/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_cli.py b/tests/unit/test_cli.py index 6d5c0f72e..970a5bf28 100644 --- a/tests/unit/test_cli.py +++ b/tests/unit/test_cli.py @@ -93,7 +93,7 @@ class CLITest(AsyncioTestCase): def test_deprecated_command_daemon_not_started(self): actual_output = StringIO() with contextlib.redirect_stdout(actual_output): - main(["channel", "new", "@foo", "1.0"]) + main(["channel", "new", "@foo", "1.0", "video"]) self.assertEqual( actual_output.getvalue().strip(), "channel_new is deprecated, using channel_create.\n"