From 26e2865e358c2243087426a5749318703b30ca54 Mon Sep 17 00:00:00 2001 From: jessop Date: Wed, 13 Nov 2019 22:14:20 -0500 Subject: [PATCH] cleanup --- lbry/lbry/testcase.py | 4 ++-- lbry/tests/integration/test_claim_commands.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lbry/lbry/testcase.py b/lbry/lbry/testcase.py index 74599959c..c78951559 100644 --- a/lbry/lbry/testcase.py +++ b/lbry/lbry/testcase.py @@ -267,13 +267,13 @@ class CommandTestCase(IntegrationTestCase): return await self.confirm_and_render( self.daemon.jsonrpc_channel_abandon(*args, **kwargs), confirm ) -# ClaimIDs = .... + async def collection_create( self, name='firstcollection', bid='1.0', confirm=True, **kwargs): return await self.confirm_and_render( self.daemon.jsonrpc_collection_create(name, bid, **kwargs), confirm ) -# ClaimIDs = .... + async def collection_update( self, claim_id, confirm=True, **kwargs): return await self.confirm_and_render( diff --git a/lbry/tests/integration/test_claim_commands.py b/lbry/tests/integration/test_claim_commands.py index 7009a4e12..f8289248f 100644 --- a/lbry/tests/integration/test_claim_commands.py +++ b/lbry/tests/integration/test_claim_commands.py @@ -16,7 +16,7 @@ log = logging.getLogger(__name__) class ClaimTestCase(CommandTestCase): -# add collection tests + files_directory = os.path.join(os.path.dirname(__file__), 'files') video_file_url = 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerEscapes.mp4' video_file_name = os.path.join(files_directory, 'ForBiggerEscapes.mp4')