From 905c7c2ecce793417935ee4a528a3a7ddacc2610 Mon Sep 17 00:00:00 2001 From: Yash Patil <40046473+ypatil12@users.noreply.github.com> Date: Mon, 27 Jan 2025 18:06:26 -0500 Subject: [PATCH] fix: test --- test/unit/RegistryCoordinatorUnit.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/RegistryCoordinatorUnit.t.sol b/test/unit/RegistryCoordinatorUnit.t.sol index 64321a68..a734171a 100644 --- a/test/unit/RegistryCoordinatorUnit.t.sol +++ b/test/unit/RegistryCoordinatorUnit.t.sol @@ -689,7 +689,7 @@ contract RegistryCoordinatorUnitTests_DeregisterOperator_EjectOperator is bytes memory quorumNumbers = new bytes(1); quorumNumbers[0] = bytes1(defaultQuorumNumber); - cheats.expectRevert(bytes4(keccak256("OperatorSetQuorum()"))); + cheats.expectRevert(bytes4(keccak256("NotRegistered()"))); cheats.prank(defaultOperator); registryCoordinator.deregisterOperator(quorumNumbers); }