We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8809f91 commit d805368Copy full SHA for d805368
testnet/stacks-node/src/tests/nakamoto_integrations.rs
@@ -8486,8 +8486,10 @@ fn mock_mining() {
8486
let mock_mining_blocks_end = follower_naka_mined_blocks.load(Ordering::SeqCst);
8487
let blocks_mock_mined = mock_mining_blocks_end - mock_mining_blocks_start;
8488
assert!(
8489
- blocks_mock_mined > tenure_count,
8490
- "Should have mock mined at least `tenure_count` nakamoto blocks"
+ blocks_mock_mined >= tenure_count,
+ "Should have mock mined at least `tenure_count` nakamoto blocks. Mined = {}. Expected = {}",
8491
+ blocks_mock_mined,
8492
+ tenure_count,
8493
);
8494
8495
// wait for follower to reach the chain tip
0 commit comments