From a095f89c811e7d8d87ec8b99785679810123faaf Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 17 Sep 2019 10:21:35 -0400 Subject: [PATCH] remove redundant test --- lbry/tests/integration/test_account_commands.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lbry/tests/integration/test_account_commands.py b/lbry/tests/integration/test_account_commands.py index d0be31342..fa1270842 100644 --- a/lbry/tests/integration/test_account_commands.py +++ b/lbry/tests/integration/test_account_commands.py @@ -11,14 +11,6 @@ def extract(d, keys): class AccountManagement(CommandTestCase): - async def test_sqlite_binding_error(self): - tasks = [ - self.loop.create_task(self.daemon.jsonrpc_account_create('second account' + str(x))) for x in range(100) - ] - await asyncio.wait(tasks) - for result in tasks: - self.assertFalse(isinstance(result.result(), Exception)) - async def test_account_list_set_create_remove_add(self): # check initial account response = await self.daemon.jsonrpc_account_list()