From 481e265ec7b720ed8bcb4576978a125997a508d7 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 18 Oct 2019 15:58:32 -0400 Subject: [PATCH] added wallet.save() in test since it is no longer saved redundantly on startup --- lbry/tests/integration/test_wallet_commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lbry/tests/integration/test_wallet_commands.py b/lbry/tests/integration/test_wallet_commands.py index 6cdbe29c5..bd44044d4 100644 --- a/lbry/tests/integration/test_wallet_commands.py +++ b/lbry/tests/integration/test_wallet_commands.py @@ -83,6 +83,7 @@ class WalletEncryptionAndSynchronization(CommandTestCase): async def test_encryption_and_locking(self): daemon = self.daemon wallet = daemon.wallet_manager.default_wallet + wallet.save() self.assertEqual(daemon.jsonrpc_wallet_status(), {'is_locked': False, 'is_encrypted': False}) self.assertIsNone(daemon.jsonrpc_preference_get(ENCRYPT_ON_DISK))