From 0abbc2089990d348b957594386cf9f993d8da1d5 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sat, 25 Aug 2018 23:50:48 -0400 Subject: [PATCH] fix for cli test --- 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 a4a78001e..9706d9e17 100644 --- a/tests/unit/test_cli.py +++ b/tests/unit/test_cli.py @@ -92,9 +92,9 @@ class CLITest(unittest.TestCase): def test_deprecated_command_daemon_not_started(self): actual_output = StringIO() with contextlib.redirect_stdout(actual_output): - main(["channel_list_mine"]) + main(["wallet_balance"]) self.assertEqual( actual_output.getvalue().strip(), - "channel_list_mine is deprecated, using channel_list.\n" + "wallet_balance is deprecated, using account_balance.\n" "Could not connect to daemon. Are you sure it's running?" )