diff --git a/test/Quoter.t.sol b/test/Quoter.t.sol index b7d35a3d4..69c9a026d 100644 --- a/test/Quoter.t.sol +++ b/test/Quoter.t.sol @@ -121,7 +121,7 @@ contract QuoterTest is Test, Deployers { // nested self-call into lockAcquired reverts function testQuoter_callLockAcquired_reverts() public { - vm.expectRevert(IQuoter.InvalidLockAcquiredSender.selector); + vm.expectRevert(IQuoter.LockFailure.selector); vm.prank(address(manager)); quoter.lockAcquired(abi.encodeWithSelector(quoter.lockAcquired.selector, address(this), "0x")); }