From a33b41561cc3fb4cd6d50a8738e4c5dca43ec0a5 Mon Sep 17 00:00:00 2001 From: QUAQ Date: Sun, 17 Mar 2024 10:14:13 -0500 Subject: [PATCH] fix test --- contracts/test/unit/EigenDABlobUtils.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/test/unit/EigenDABlobUtils.t.sol b/contracts/test/unit/EigenDABlobUtils.t.sol index 18c362831a..c4d86c0e59 100644 --- a/contracts/test/unit/EigenDABlobUtils.t.sol +++ b/contracts/test/unit/EigenDABlobUtils.t.sol @@ -240,7 +240,7 @@ contract EigenDABlobUtilsUnit is BLSMockAVSDeployer { blobVerificationProof.quorumIndices[i] = bytes1(uint8(i)); } - cheats.expectRevert("EigenDARollupUtils.verifyBlob: confirmed quorums are not a subset of the required quorums"); + cheats.expectRevert("EigenDARollupUtils.verifyBlob: required quorums are not a subset of the confirmed quorums"); eigenDABlobUtilsHarness.verifyBlob(blobHeader[1], eigenDAServiceManager, blobVerificationProof); }