Skip to content

Commit 5fdaaf0

Browse files
committed
fix: we now report the actual block height
1 parent 3fb6d6f commit 5fdaaf0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

testnet/stacks-node/src/tests/nakamoto_integrations.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1631,10 +1631,8 @@ fn simple_neon_integration() {
16311631
tip.stacks_block_height
16321632
);
16331633

1634-
let expected_result_2 = format!(
1635-
"stacks_node_stacks_tip_height {}",
1636-
tip.stacks_block_height - 1
1637-
);
1634+
let expected_result_2 =
1635+
format!("stacks_node_stacks_tip_height {}", tip.stacks_block_height);
16381636
Ok(res.contains(&expected_result_1) && res.contains(&expected_result_2))
16391637
})
16401638
.expect("Prometheus metrics did not update");

0 commit comments

Comments
 (0)