Skip to content

Commit

Permalink
🐛 fix checkpointer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yezz123 committed Dec 24, 2024
1 parent a89b0eb commit ceb7fed
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions checkpointer/tests/integration/fixtures/contracts.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,11 @@ async def declare_deploy_oracle(
await declare_result.wait_for_acceptance()

# Deploy Oracle
currencies = [currency.to_dict() for currency in CURRENCIES]
pairs = [pair.to_dict() for pair in USD_PAIRS]
all_currencies = CURRENCIES[:40]
all_pairs = USD_PAIRS[:20]

currencies = [currency.to_dict() for currency in all_currencies]
pairs = [pair.to_dict() for pair in all_pairs]

deploy_result = await declare_result.deploy_v1(
constructor_args=[
Expand Down

0 comments on commit ceb7fed

Please sign in to comment.