Skip to content

Commit

Permalink
chore: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
zone117x committed Oct 18, 2024
1 parent cbb9456 commit 23057d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testnet/stacks-node/src/tests/nakamoto_integrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4879,6 +4879,7 @@ fn burn_ops_integration_test() {
StacksTransaction::consensus_deserialize(&mut tx_bytes.as_slice()).unwrap();
if let TransactionPayload::TenureChange(_tenure_change) = parsed.payload {
block_has_tenure_change = true;
continue;
}
}
}
Expand All @@ -4897,7 +4898,6 @@ fn burn_ops_integration_test() {
// tenure extend block should have the same tenure height as the last tenure height
assert_eq!(last_tenture_height, tenure_height);
}
last_tenture_height = block.get("block_height").unwrap().as_u64().unwrap();
} else {
// epoch2.x block tenure height is the same as the block height
assert_eq!(tenure_height, block_height);
Expand Down

0 comments on commit 23057d9

Please sign in to comment.