mirror of
https://github.com/LBRYFoundation/lbry-sdk.git
synced 2025-09-03 02:35:14 +00:00
fix for cli test
This commit is contained in:
parent
2fca29144e
commit
0abbc20899
1 changed files with 2 additions and 2 deletions
|
@ -92,9 +92,9 @@ class CLITest(unittest.TestCase):
|
||||||
def test_deprecated_command_daemon_not_started(self):
|
def test_deprecated_command_daemon_not_started(self):
|
||||||
actual_output = StringIO()
|
actual_output = StringIO()
|
||||||
with contextlib.redirect_stdout(actual_output):
|
with contextlib.redirect_stdout(actual_output):
|
||||||
main(["channel_list_mine"])
|
main(["wallet_balance"])
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
actual_output.getvalue().strip(),
|
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?"
|
"Could not connect to daemon. Are you sure it's running?"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue