File tree 1 file changed +0
-11
lines changed
1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -81,17 +81,6 @@ contract CheckpointTrackerTest is Test {
81
81
tracker.proveTransition (end, numRelevantPublications, proof);
82
82
}
83
83
84
- function test_proveTransition_RevertWhenEndPublicationNotAfterStart () public {
85
- ICheckpointTracker.Checkpoint memory end =
86
- ICheckpointTracker.Checkpoint ({publicationId: 0 , commitment: keccak256 (abi.encode ("end " ))});
87
- // this is nonsensical, but we're testing the publicationId check so I think it makes sense for the other
88
- // parameters to match previous tests.
89
- uint256 numRelevantPublications = 2 ;
90
-
91
- vm.expectRevert ("End publication must be after the last proven publication " );
92
- tracker.proveTransition (end, numRelevantPublications, proof);
93
- }
94
-
95
84
function createSampleFeed () private {
96
85
pubHashes = new bytes32 [](NUM_PUBLICATIONS);
97
86
You can’t perform that action at this time.
0 commit comments