Skip to content

Commit

Permalink
fix: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
JordyRo1 committed Jul 4, 2024
1 parent 6700b7a commit 8b61700
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions contracts/src/tests/test_mailbox.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,9 @@ fn test_dispatch_with_protocol_fee_hook() {
);

// balance check
assert_eq!(erc20_dispatcher.balanceOf(OWNER().try_into().unwrap()), INITIAL_SUPPLY - PROTOCOL_FEE);
assert_eq!(
erc20_dispatcher.balanceOf(OWNER().try_into().unwrap()), INITIAL_SUPPLY - PROTOCOL_FEE
);
assert(mailbox.get_latest_dispatched_id() == message_id, 'Failed to fetch latest id');
}

Expand Down Expand Up @@ -301,7 +303,9 @@ fn test_dispatch_with_two_fee_hook() {
);

// balance check
assert_eq!(erc20_dispatcher.balanceOf(OWNER().try_into().unwrap()), INITIAL_SUPPLY - 4 * PROTOCOL_FEE);
assert_eq!(
erc20_dispatcher.balanceOf(OWNER().try_into().unwrap()), INITIAL_SUPPLY - 4 * PROTOCOL_FEE
);
assert(mailbox.get_latest_dispatched_id() == message_id, 'Failed to fetch latest id');
}

Expand Down

0 comments on commit 8b61700

Please sign in to comment.