From 43bd9f095feacec2b143ae39e9384610e51f40d4 Mon Sep 17 00:00:00 2001 From: JordanCason Date: Sat, 9 Mar 2024 11:03:53 -0500 Subject: [PATCH] Update test/HoneyPause.t.sol Co-authored-by: Lawrence Forman --- test/HoneyPause.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/HoneyPause.t.sol b/test/HoneyPause.t.sol index b3cce92..45ebe19 100644 --- a/test/HoneyPause.t.sol +++ b/test/HoneyPause.t.sol @@ -509,7 +509,7 @@ contract HoneyPauseTest is Test { uint256 bountyAmount = 1 ether; uint256 legitimateBountyId = honey.add("LegitimateExploitTest", testToken, bountyAmount, new TestVerifier(), mockPauser, mockPayer, address(this)); - // Create a fake bounty attempting to use the first bounty's pauser/payer with an always successful Verifyer + // Create a fake bounty attempting to use the first bounty's pauser/payer with an always successful Verifier uint256 fakeBountyId = honey.add("BogusExploitTest", testToken, bountyAmount, new TestVerifier(), mockPauser, mockPayer, address(this)); IExploiter exploiter = new TestExploiter();