Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvc94ch committed Feb 12, 2025
1 parent 6fc8ca9 commit f435efd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gmp/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -601,8 +601,8 @@ mod tests {
let chain = connector(network, 0).await?;
let shard = MockTssSigner::new(0);
assert_eq!(chain.balance(chain.address()).await?, 0);
chain.faucet().await?;
assert_eq!(chain.balance(chain.address()).await?, FAUCET);
chain.faucet(100_000).await?;
assert_eq!(chain.balance(chain.address()).await?, 100_000);
let (gateway, block) = chain.deploy_gateway("".as_ref(), "".as_ref(), "".as_ref()).await?;
chain.transfer(gateway, 10_000).await?;
assert_eq!(chain.balance(gateway).await?, 10_000);
Expand Down

0 comments on commit f435efd

Please sign in to comment.