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')