Skip to content

Commit c7286c4

Browse files
committed
Run cargo fmt
Signed-off-by: Jacinta Ferrant <jacinta@trustmachines.co>
1 parent 4e971b2 commit c7286c4

File tree

1 file changed

+8
-5
lines changed
  • testnet/stacks-node/src/tests/signer

1 file changed

+8
-5
lines changed

testnet/stacks-node/src/tests/signer/v0.rs

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3100,11 +3100,14 @@ fn tenure_extend_with_other_transactions() {
31003100
transactions.len() > 1,
31013101
"Expected at least 2 transactions in the block"
31023102
);
3103-
assert!(transactions.iter().any(|tx| {
3104-
let tx = tx.as_object().unwrap();
3105-
let txid = tx["txid"].as_str().unwrap();
3106-
txid[2..] == to_find
3107-
}), "Failed to find the transfer tx in the block");
3103+
assert!(
3104+
transactions.iter().any(|tx| {
3105+
let tx = tx.as_object().unwrap();
3106+
let txid = tx["txid"].as_str().unwrap();
3107+
txid[2..] == to_find
3108+
}),
3109+
"Failed to find the transfer tx in the block"
3110+
);
31083111
signer_test.shutdown();
31093112
}
31103113

0 commit comments

Comments
 (0)