Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions test/steps/v2_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,14 +369,13 @@ def check_asset_balance(context, numaccounts, account, isfrozen, amount):


@when(
'we make a Lookup Asset Balances call against asset index {index} with limit {limit} afterAddress "{afterAddress:MaybeString}" round {block} currencyGreaterThan {currencyGreaterThan} currencyLessThan {currencyLessThan}'
'we make a Lookup Asset Balances call against asset index {index} with limit {limit} afterAddress "{afterAddress:MaybeString}" currencyGreaterThan {currencyGreaterThan} currencyLessThan {currencyLessThan}'
)
def asset_balance(
context,
index,
limit,
afterAddress,
block,
currencyGreaterThan,
currencyLessThan,
):
Expand All @@ -386,7 +385,6 @@ def asset_balance(
next_page=None,
min_balance=int(currencyGreaterThan),
max_balance=int(currencyLessThan),
block=int(block),
)


Expand Down