Skip to content

Commit 2bb282e

Browse files
committed
chore: fix errors when filling.
1 parent c72ca4e commit 2bb282e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/prague/eip7742_uncouple_blob_count/test_uncoupled_blob_txs.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,11 @@ def test_zero_blobs_in_blob_tx(
4848

4949
@pytest.mark.parametrize(
5050
"blobs_per_tx",
51-
[Spec.CANCUN_MAX_BLOBS_PER_BLOCK + i for i in range(1, 4)], # Max +1 to Max +3
51+
[
52+
(Spec.CANCUN_MAX_BLOBS_PER_BLOCK + 1,),
53+
(Spec.CANCUN_MAX_BLOBS_PER_BLOCK + 2,),
54+
(Spec.CANCUN_MAX_BLOBS_PER_BLOCK + 3,),
55+
],
5256
)
5357
@pytest.mark.valid_from("Prague")
5458
def test_blobs_above_cancun_max(
@@ -70,7 +74,7 @@ def test_blobs_above_cancun_max(
7074

7175
@pytest.mark.parametrize(
7276
"blobs_per_tx",
73-
[i for i in range(64, 1024, 64)], # 64, 128, 192, ..., 960, 1024
77+
[(i,) for i in range(64, 1024, 64)],
7478
)
7579
@pytest.mark.valid_from("Prague")
7680
def test_large_number_of_blobs_in_tx(

0 commit comments

Comments
 (0)