diff --git a/test/RewardsDistributor.t.sol b/test/RewardsDistributor.t.sol index bece286..9136e9c 100644 --- a/test/RewardsDistributor.t.sol +++ b/test/RewardsDistributor.t.sol @@ -37,7 +37,7 @@ contract RewardsDistributorTest is Test { contract Constructor is RewardsDistributorTest { function test_SetUp() public view { - assertEq(rewardsDistributor.rewardToken(), address(govToken)); + assertEq(address(rewardsDistributor.rewardToken()), address(govToken)); assertEq(Ownable(address(rewardsDistributor)).owner(), address(this)); } }