Skip to content

Commit 78dfecf

Browse files
committed
chore: small test id fix.
1 parent 15adaf5 commit 78dfecf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/osaka/eip7939_count_leading_zeros/test_count_leading_zeros.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def clz_parameters():
7070
@pytest.mark.parametrize(
7171
"test_id,value,expected_clz",
7272
clz_parameters(),
73-
ids=lambda test_data: f"{test_data[0]}-expected_clz_{test_data[2]}",
73+
ids=[f"{test_data[0]}-expected_clz_{test_data[2]}" for test_data in clz_parameters()],
7474
)
7575
def test_clz_opcode_scenarios(
7676
state_test: StateTestFiller,

0 commit comments

Comments
 (0)