Skip to content

Commit

Permalink
corrected typo
Browse files Browse the repository at this point in the history
  • Loading branch information
satyajeetkolhapure committed Nov 11, 2024
1 parent 4a74554 commit 13a9f5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/test/stdlib/IndexerModuleV2.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ contract IndexerModuleV2Test is Test {

function test_run() public {
address[] memory modules = new address[](0);
bytes32 expectedAtttestationId = attestationRegistry.getNextAttestationId();
bytes32 expectedAttestationId = attestationRegistry.getNextAttestationId();
ValidPortalMock validPortal = new ValidPortalMock(modules, address(router));
vm.prank(address(validPortal));
vm.expectEmit({ emitter: address(indexerModule) });
emit AttestationIndexed(expectedAtttestationId);
emit AttestationIndexed(expectedAttestationId);
indexerModule.run(
payload3,
bytes(""),
Expand All @@ -77,7 +77,7 @@ contract IndexerModuleV2Test is Test {
address(validPortal),
OperationType.Attest
);
assertEq(indexerModule.getIndexedAttestationStatus(expectedAtttestationId), true);
assertEq(indexerModule.getIndexedAttestationStatus(expectedAttestationId), true);
}

function test_indexAttestation() public {
Expand Down

0 comments on commit 13a9f5a

Please sign in to comment.