Skip to content

Commit 881e27b

Browse files
committed
Fix accidental replace of assert!(result.unwrap() with expect_err instead of expect
Signed-off-by: Jacinta Ferrant <jacinta@trustmachines.co>
1 parent bf79d64 commit 881e27b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stacks-signer/src/tests/chainstate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ fn check_proposal_reorg_timing_bad() {
288288
#[test]
289289
fn check_proposal_reorg_timing_ok() {
290290
let result = reorg_timing_testing("reorg_timing_okay", 30, 30);
291-
result.expect_err("Proposal should validate okay, because the reorg occurred in a block whose proposed time was close to the sortition");
291+
result.expect("Proposal should validate okay, because the reorg occurred in a block whose proposed time was close to the sortition");
292292
}
293293

294294
#[test]

0 commit comments

Comments
 (0)