Skip to content

Commit

Permalink
try to fix close_account_non_empty_balance test
Browse files Browse the repository at this point in the history
  • Loading branch information
garikbesson committed Oct 29, 2024
1 parent 7e3477b commit d98e4b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tests/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ async fn close_account_non_empty_balance() -> anyhow::Result<()> {
.max_gas()
.deposit(ONE_YOCTO)
.transact()
.await;
.await?;
assert!(format!("{:?}", res)
.contains("Can't unregister the account with the positive balance without force"));

Expand All @@ -260,7 +260,7 @@ async fn close_account_non_empty_balance() -> anyhow::Result<()> {
.max_gas()
.deposit(ONE_YOCTO)
.transact()
.await;
.await?;
assert!(format!("{:?}", res)
.contains("Can't unregister the account with the positive balance without force"));

Expand Down

0 comments on commit d98e4b6

Please sign in to comment.