From 03595052ce667895a5702a1a3a6fe024cf1a8e47 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 5 Jun 2020 16:08:25 -0400 Subject: [PATCH] fix regular support create tests --- tests/integration/blockchain/test_claim_commands.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/integration/blockchain/test_claim_commands.py b/tests/integration/blockchain/test_claim_commands.py index 765e77d5f..0432668c7 100644 --- a/tests/integration/blockchain/test_claim_commands.py +++ b/tests/integration/blockchain/test_claim_commands.py @@ -1828,7 +1828,8 @@ class SupportCommands(CommandTestCase): # send a tip to the claim using account2 tip = await self.out( self.daemon.jsonrpc_support_create( - claim_id, '1.0', True, account2.id, 'wallet2', funding_account_ids=[account2.id]) + claim_id, '1.0', True, account_id=account2.id, wallet_id='wallet2', + funding_account_ids=[account2.id]) ) await self.confirm_tx(tip['txid']) @@ -1859,7 +1860,8 @@ class SupportCommands(CommandTestCase): # send a support to the claim using account2 support = await self.out( self.daemon.jsonrpc_support_create( - claim_id, '2.0', False, account2.id, 'wallet2', funding_account_ids=[account2.id]) + claim_id, '2.0', False, account_id=account2.id, wallet_id='wallet2', + funding_account_ids=[account2.id]) ) await self.confirm_tx(support['txid'])