Skip to content

Commit

Permalink
fix test bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sparqet committed Jun 26, 2024
1 parent f4debbe commit 8605574
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/integration/test_long_integration.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -1213,9 +1213,13 @@ fn test_long_increase_decrease_close() {
// role_store.grant_role(caller_address, role::ROUTER_PLUGIN);

exchange_router
.send_tokens(market.long_token, deposit_vault.contract_address, 20000000000000000000);
.send_tokens(
market.long_token, deposit_vault.contract_address, 50000000000000000000000000000
);
exchange_router
.send_tokens(market.short_token, deposit_vault.contract_address, 100000000000000000000000);
.send_tokens(
market.short_token, deposit_vault.contract_address, 50000000000000000000000000000
);

stop_prank(market.long_token);
stop_prank(market.short_token);
Expand Down

0 comments on commit 8605574

Please sign in to comment.