Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit f9f45af

Browse files
committed
cast dict.values() to tuple for indexing
1 parent fcca47b commit f9f45af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ethereum/tests/test_vm_failing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_testutils_check_vm_test():
5151
func_name, filename, testname, testdata = collected[1]
5252
testutils.check_vm_test(testutils.fixture_to_bytes(testdata))
5353
# manipulate post data
54-
storage = testdata['post'].values()[0]['storage']
54+
storage = tuple(testdata['post'].values())[0]['storage']
5555
assert storage['0x23'] == '0x01'
5656
storage['0x23'] = '0x02'
5757
failed_as_expected = False

0 commit comments

Comments
 (0)