From 421cf51247a0ab00fda9b9cb8600375a80cd13e8 Mon Sep 17 00:00:00 2001 From: Tony Lee Date: Sat, 23 Mar 2024 12:47:09 -0400 Subject: [PATCH] failure test --- packages/registration/tests/register_tests.move | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/registration/tests/register_tests.move b/packages/registration/tests/register_tests.move index cd383c5e..7f30cea3 100644 --- a/packages/registration/tests/register_tests.move +++ b/packages/registration/tests/register_tests.move @@ -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(scenario); - assert!(total_balance(&auction_house) == amount, 0); + assert!(total_balance(&auction_house) != amount, 0); test_scenario::return_shared(auction_house); }