From 163e80da7563ced76704d6d73eeeb1fe59903b03 Mon Sep 17 00:00:00 2001 From: Ocenka Date: Mon, 11 Aug 2025 13:39:52 +0100 Subject: [PATCH] Update types_test.go --- beacon/engine/types_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beacon/engine/types_test.go b/beacon/engine/types_test.go index 5716a19627..4b5123a77b 100644 --- a/beacon/engine/types_test.go +++ b/beacon/engine/types_test.go @@ -37,12 +37,12 @@ func TestBlobs(t *testing.T) { sidecarWithoutCellProofs := types.NewBlobTxSidecar(types.BlobSidecarVersion0, []kzg4844.Blob{*emptyBlob}, []kzg4844.Commitment{emptyBlobCommit}, []kzg4844.Proof{emptyBlobProof}) env := BlockToExecutableData(block, common.Big0, []*types.BlobTxSidecar{sidecarWithoutCellProofs}, nil) if len(env.BlobsBundle.Proofs) != 1 { - t.Fatalf("Expect 1 proof in blobs bundle, got %v", len(env.BlobsBundle.Proofs)) + t.Fatalf("Expected 1 proof in blobs bundle, got %v", len(env.BlobsBundle.Proofs)) } sidecarWithCellProofs := types.NewBlobTxSidecar(types.BlobSidecarVersion0, []kzg4844.Blob{*emptyBlob}, []kzg4844.Commitment{emptyBlobCommit}, emptyCellProof) env = BlockToExecutableData(block, common.Big0, []*types.BlobTxSidecar{sidecarWithCellProofs}, nil) if len(env.BlobsBundle.Proofs) != 128 { - t.Fatalf("Expect 128 proofs in blobs bundle, got %v", len(env.BlobsBundle.Proofs)) + t.Fatalf("Expected 128 proofs in blobs bundle, got %v", len(env.BlobsBundle.Proofs)) } }