Skip to content

Commit

Permalink
Update docs/listings/snforge_overview/crates/using_cheatcodes/tests/c…
Browse files Browse the repository at this point in the history
…aller_address/proper_use_global.cairo

Co-authored-by: Jan Smółka <[email protected]>
  • Loading branch information
franciszekjob and integraledelebesgue authored Sep 30, 2024
1 parent c8d13e1 commit 040d72d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ fn call_and_invoke_global() {

let balance_a = dispatcher_a.get_balance();
let balance_b = dispatcher_b.get_balance();
assert(balance_a == 100, 'balance_a == 100');
assert(balance_b == 100, 'balance_b = 100');
assert_eq!(balance_a, 100);
assert_eq!(balance_b, 100);

// Cancel the cheat
stop_cheat_caller_address_global();
Expand Down

0 comments on commit 040d72d

Please sign in to comment.