Skip to content

Commit 931bf13

Browse files
committed
Use assert inplace of assert_eq
1 parent 4c51437 commit 931bf13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration_test/tests/wallet.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,10 +515,10 @@ fn wallet__lock_unspent() {
515515
node.fund_wallet();
516516

517517
let json: LockUnspent = node.client.lock_unspent().expect("lockunspent");
518-
assert_eq!(json.0, true);
518+
assert!(json.0);
519519

520520
let json: LockUnspent = node.client.unlock_unspent().expect("unlockunspent");
521-
assert_eq!(json.0, true);
521+
assert!(json.0);
522522
}
523523

524524
// This is tested in raw_transactions.rs `create_sign_send()`.

0 commit comments

Comments
 (0)