Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz authored Jan 22, 2025
1 parent 19c99fb commit ef46d08
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions tests/cancun/eip4844_blobs/test_excess_blob_gas_fork_transition.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,17 @@ def test_fork_transition_excess_blob_gas_at_blob_genesis(
id="max_blobs",
),
pytest.param(
10, 0, fork.max_blobs_per_block(timestamp=FORK_TIMESTAMP), id="no_blobs_before"
10,
0,
fork.max_blobs_per_block(timestamp=FORK_TIMESTAMP),
id="no_blobs_before",
),
pytest.param(
10,
fork.max_blobs_per_block(timestamp=0),
0,
id="no_blobs_after",
),
pytest.param(10, fork.max_blobs_per_block(timestamp=0), 0, id="no_blobs_after"),
pytest.param(
10,
fork.target_blobs_per_block(timestamp=0),
Expand Down

0 comments on commit ef46d08

Please sign in to comment.