Skip to content

Commit af99b76

Browse files
committed
Fix integration test failures
1 parent c6f42f0 commit af99b76

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

tests/intergration/tool/test_account_command.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ def test_account_fund_command(convex_url: str, test_account: Account):
132132
def test_account_register_command(convex_url: str, test_account: Account):
133133
args = Mock()
134134

135+
args.command = 'account'
136+
args.account_command = 'register'
135137
args.url = convex_url
136138
args.keywords = test_account.key_pair.export_to_mnemonic
137139
args.keyfile = None

tests/intergration/tool/test_query_command.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
def test_query_command(convex_url: str):
1414
args = Mock()
1515

16+
args.command = 'query'
1617
args.url = convex_url
1718
args.query = '(address *registry*)'
1819
args.name_address = None

tests/intergration/tool/test_submit_comand.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
def test_submit_command(convex_url: str, test_account: Account):
1515
args = Mock()
1616

17+
args.command = 'submit'
1718
args.url = convex_url
1819
args.keywords = test_account.key_pair.export_to_mnemonic
1920
args.keyfile = None

0 commit comments

Comments
 (0)