Skip to content

Commit 96fb60d

Browse files
authored
test_blob_txs_full.py now uses fork instead of static Cancun
1 parent f07306e commit 96fb60d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/cancun/eip4844_blobs/test_blob_txs_full.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
from ethereum_test_base_types.base_types import Hash
1212
from ethereum_test_forks import Fork
13-
from ethereum_test_forks.forks.forks import Cancun
1413
from ethereum_test_tools import (
1514
Address,
1615
Alloc,
@@ -246,7 +245,7 @@ def generate_full_blob_tests(
246245
pytest.param(
247246
[ # Txs
248247
[ # Blobs per transaction
249-
Blob.from_fork(Cancun),
248+
Blob.from_fork(fork),
250249
]
251250
],
252251
[True],
@@ -255,7 +254,7 @@ def generate_full_blob_tests(
255254
pytest.param(
256255
[ # Txs
257256
[ # Blobs per transaction
258-
Blob.from_fork(Cancun),
257+
Blob.from_fork(fork),
259258
]
260259
for _ in range(max_blobs)
261260
],
@@ -265,7 +264,7 @@ def generate_full_blob_tests(
265264
pytest.param(
266265
[ # Txs
267266
[ # Blobs per transaction
268-
Blob.from_fork(Cancun),
267+
Blob.from_fork(fork),
269268
]
270269
for _ in range(max_blobs)
271270
],

0 commit comments

Comments
 (0)