Skip to content

Commit 31f350d

Browse files
committed
fixes
1 parent 08bd4d1 commit 31f350d

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

tests/verkle/eip7748/accounts.py

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -50,23 +50,18 @@ def __init__(self, code_length: int, storage_slot_count: int):
5050
@pytest.mark.parametrize(
5151
"account_configs",
5252
[
53-
# [AccountConfig(0, 0)],
54-
# [AccountConfig(0, 0), AccountConfig(0, 0)],
55-
# [AccountConfig(0, 0), AccountConfig(0, 0), AccountConfig(0, 0)],
53+
[AccountConfig(0, 0)],
54+
[AccountConfig(0, 0), AccountConfig(0, 0)],
55+
[AccountConfig(0, 0), AccountConfig(0, 0), AccountConfig(0, 0)],
5656
[AccountConfig(15, 1)],
5757
],
58-
ids=[
59-
# "One EOA",
60-
# "Two EOAs",
61-
"Three EOAs",
62-
# "Small contract"
63-
],
58+
ids=["One EOA", "Two EOAs", "Three EOAs", "Small contract"],
6459
)
6560
@pytest.mark.parametrize(
6661
"fill_first_block, stride",
6762
[
6863
(False, 3),
69-
# (True, 3),
64+
(True, 3),
7065
],
7166
)
7267
def test_conversions(
@@ -89,7 +84,7 @@ def test_conversions(
8984
storage = {}
9085
for j in range(account_config.storage_slots_count):
9186
conversion_units += 1
92-
storage[j] = j
87+
storage[j] = j + 1
9388

9489
pre_state[accounts[i]] = Account(
9590
balance=100 + 1000 * i,

0 commit comments

Comments
 (0)