From 373691dd5e14d5e92f6b50c20e78038b5f2533e0 Mon Sep 17 00:00:00 2001 From: baroooo Date: Mon, 18 Dec 2023 14:40:23 +0100 Subject: [PATCH] fix: naming issue --- test/governance/IntegrationTests/Integration.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/governance/IntegrationTests/Integration.t.sol b/test/governance/IntegrationTests/Integration.t.sol index 74f7893..4655064 100644 --- a/test/governance/IntegrationTests/Integration.t.sol +++ b/test/governance/IntegrationTests/Integration.t.sol @@ -151,7 +151,7 @@ contract GovernanceIntegrationTest is TestSetup, Proposals, Utils { assertEq(airgrab.cliffPeriod(), 0); assertEq(address(airgrab.token()), address(mentoToken)); assertEq(address(airgrab.locking()), address(locking)); - assertEq(address(airgrab.communityFund()), address(communityFund)); + assertEq(address(airgrab.celoCommunityFund()), address(communityFund)); bytes32 proposerRole = governanceTimelock.PROPOSER_ROLE(); bytes32 executorRole = governanceTimelock.EXECUTOR_ROLE();