From d54cf2452a75754f10ceb19e90221d81f56e7426 Mon Sep 17 00:00:00 2001 From: Qi Wu Date: Mon, 11 Mar 2024 18:05:58 +0800 Subject: [PATCH] Fix Quoter --- test/Quoter.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")); }