Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph committed Nov 7, 2024
1 parent bd6e10b commit 24c7d4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vms/platformvm/block/executor/verifier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ func TestVerifierVisitProposalBlock(t *testing.T) {
statelessBlock: proposalBlock,

timestamp: initialTimestamp,
verifiedHeights: set.Of(uint64(0)),
verifiedHeights: set.Of[uint64](0),
},
executedBlockState,
)
Expand Down Expand Up @@ -276,7 +276,7 @@ func TestVerifierVisitAtomicBlock(t *testing.T) {
},
},
},
verifiedHeights: set.Of(uint64(0)),
verifiedHeights: set.Of[uint64](0),
},
atomicBlockState,
)
Expand Down Expand Up @@ -405,7 +405,7 @@ func TestVerifierVisitStandardBlock(t *testing.T) {
},
},
},
verifiedHeights: set.Of(uint64(0)),
verifiedHeights: set.Of[uint64](0),
},
atomicBlockState,
)
Expand Down

0 comments on commit 24c7d4b

Please sign in to comment.