diff --git a/test/QuestClaimable.t.sol b/test/QuestClaimable.t.sol index d7bd1a8b..93ded7d1 100644 --- a/test/QuestClaimable.t.sol +++ b/test/QuestClaimable.t.sol @@ -179,6 +179,7 @@ contract TestQuestClaimable is Test, Errors, Events, TestUtils { vm.startPrank(participant, participant); vm.recordLogs(); vm.expectRevert(IQuestFactory.Deprecated.selector); + questAddress.call{value: MINT_FEE}(payload); vm.stopPrank(); } @@ -217,6 +218,7 @@ contract TestQuestClaimable is Test, Errors, Events, TestUtils { vm.startPrank(participant, participant); vm.recordLogs(); vm.expectRevert(IQuestFactory.Deprecated.selector); + questAddress.call{value: MINT_FEE}(payload); vm.stopPrank(); }