From 39bc8c45c33faf067562077213b78dbf79928f2c Mon Sep 17 00:00:00 2001 From: Lex Berezhny <lex@damoti.com> Date: Wed, 16 Oct 2019 13:54:09 -0400 Subject: [PATCH] test fix --- lbry/tests/integration/test_wallet_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/tests/integration/test_wallet_commands.py b/lbry/tests/integration/test_wallet_commands.py index db0f7d44c..1bcd773e6 100644 --- a/lbry/tests/integration/test_wallet_commands.py +++ b/lbry/tests/integration/test_wallet_commands.py @@ -102,7 +102,7 @@ class WalletEncryptionAndSynchronization(CommandTestCase): self.assertEqual(daemon.jsonrpc_wallet_status(), {'is_locked': True, 'is_encrypted': True}) # can't sign transactions with locked wallet - with self.assertRaises(error.ComponentStartConditionNotMet): + with self.assertRaises(AssertionError): await daemon.jsonrpc_channel_create('@foo', '1.0') daemon.jsonrpc_wallet_unlock('password') self.assertEqual(daemon.jsonrpc_wallet_status(), {'is_locked': False, 'is_encrypted': True})