Skip to content

Commit b221644

Browse files
committed
remove test
1 parent dd1c660 commit b221644

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

test/CheckpointTracker.t.sol

-11
Original file line numberDiff line numberDiff line change
@@ -81,17 +81,6 @@ contract CheckpointTrackerTest is Test {
8181
tracker.proveTransition(end, numRelevantPublications, proof);
8282
}
8383

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-
9584
function createSampleFeed() private {
9685
pubHashes = new bytes32[](NUM_PUBLICATIONS);
9786

0 commit comments

Comments
 (0)