Skip to content

Commit

Permalink
failure test
Browse files Browse the repository at this point in the history
  • Loading branch information
leecchh committed Mar 23, 2024
1 parent 91b8dfc commit 421cf51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/registration/tests/register_tests.move
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ module registration::register_tests {
public fun assert_balance(scenario: &mut Scenario, amount: u64) {
test_scenario::next_tx(scenario, SUINS_ADDRESS);
let auction_house = test_scenario::take_shared<SuiNS>(scenario);
assert!(total_balance(&auction_house) == amount, 0);
assert!(total_balance(&auction_house) != amount, 0);
test_scenario::return_shared(auction_house);
}

Expand Down

0 comments on commit 421cf51

Please sign in to comment.