From e1e3356ae96475e7c535b6f83507a6811991e921 Mon Sep 17 00:00:00 2001 From: Ana Julia Date: Sun, 30 Jun 2024 19:06:02 -0300 Subject: [PATCH] compile --- test/RewardsDistributor.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } }