Skip to content

Commit

Permalink
test: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
QEDK committed Jun 28, 2024
1 parent 1e6fc28 commit 1125336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/AvailAttestationTest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ contract AvailAttestationTest is Test {
attestation.attest(input);
assertEq(vectorx.rangeStartBlocks(input.rangeHash), startBlockNumber);
(uint32 blockNumber, uint128 leafIndex) = attestation.attestations(input.leaf);
assertEq(blockNumber, startBlockNumber + input.dataRootIndex);
assertEq(blockNumber, startBlockNumber + input.dataRootIndex + 1);
assertEq(leafIndex, input.leafIndex);
}
}

0 comments on commit 1125336

Please sign in to comment.