From 13a9f5a36f72fda9d516a56e87919b984169fa1d Mon Sep 17 00:00:00 2001 From: Satyajeet Kolhapure Date: Mon, 11 Nov 2024 22:17:36 +0000 Subject: [PATCH] corrected typo --- contracts/test/stdlib/IndexerModuleV2.t.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/test/stdlib/IndexerModuleV2.t.sol b/contracts/test/stdlib/IndexerModuleV2.t.sol index 8d250fe2..d5774bf9 100644 --- a/contracts/test/stdlib/IndexerModuleV2.t.sol +++ b/contracts/test/stdlib/IndexerModuleV2.t.sol @@ -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(""), @@ -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 {