From 1734e082971e199fad8c6ed4225bada6a993bccf Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Thu, 14 Feb 2019 16:34:37 -0500 Subject: [PATCH] fix test --- tests/integration/test_file_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_file_commands.py b/tests/integration/test_file_commands.py index 9f660d051..b9f501f5f 100644 --- a/tests/integration/test_file_commands.py +++ b/tests/integration/test_file_commands.py @@ -37,7 +37,7 @@ class FileCommands(CommandTestCase): self.assertIn('error', resp) self.assertEquals('Failed to download data blobs for sd hash %s within timeout' % sd_hash, resp['error']) await self.daemon.jsonrpc_file_delete(claim_name='foo') - await self.server.blob_manager.delete_blob(sd_hash) + await self.server.blob_manager.delete_blobs([sd_hash]) resp = await self.daemon.jsonrpc_get('lbry://foo', timeout=2) self.assertIn('error', resp) self.assertEquals('Failed to download sd blob %s within timeout' % sd_hash, resp['error'])