From e2964f972823df3158d2a8ced5b0a8e784041447 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 25 Mar 2019 14:39:07 -0400 Subject: [PATCH] test cli fix, take 2 --- tests/unit/test_cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/test_cli.py b/tests/unit/test_cli.py index 970a5bf28..1edcd6590 100644 --- a/tests/unit/test_cli.py +++ b/tests/unit/test_cli.py @@ -87,13 +87,13 @@ class CLITest(AsyncioTestCase): def test_valid_command_daemon_not_started(self): self.assertEqual( "Could not connect to daemon. Are you sure it's running?", - self.shell(["publish", 'asd', '99', '/blah/foo']) + self.shell(["publish", 'asd', '99', '/blah/foo', 'video']) ) def test_deprecated_command_daemon_not_started(self): actual_output = StringIO() with contextlib.redirect_stdout(actual_output): - main(["channel", "new", "@foo", "1.0", "video"]) + main(["channel", "new", "@foo", "1.0"]) self.assertEqual( actual_output.getvalue().strip(), "channel_new is deprecated, using channel_create.\n"