File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
pytest_plugins/filler/tests Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 3131 Withdrawal ,
3232 add_kzg_version ,
3333)
34- from ethereum_test_tools .vm .opcode import Opcodes as Op
3534from ethereum_test_types import Alloc
35+ from ethereum_test_vm import Opcodes as Op
3636
3737BLOB_COMMITMENT_VERSION_KZG = 1
3838
Original file line number Diff line number Diff line change 33import pytest
44
55from ethereum_test_base_types import Address
6- from ethereum_test_vm import Bytecode
7- from ethereum_test_vm import Macros as Om
8- from ethereum_test_vm import Opcodes as Op
6+
7+ from ..opcodes import Bytecode
8+ from ..opcodes import Macros as Om
9+ from ..opcodes import Opcodes as Op
910
1011
1112@pytest .mark .parametrize (
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ class StateTest(FormattedTest): # noqa: D101
232232 StateTestFiller,
233233 Transaction
234234 )
235- from ethereum_test_tools.vm.opcode import Opcodes as Op
235+ from ethereum_test_vm import Opcodes as Op
236236
237237 @pytest.mark.valid_from("Istanbul")
238238 def test_chainid(state_test: StateTestFiller, pre: Alloc):
@@ -269,7 +269,7 @@ class BlockchainTest(FormattedTest): # noqa: D101
269269 Environment,
270270 Transaction
271271 )
272- from ethereum_test_tools.vm.opcode import Opcodes as Op
272+ from ethereum_test_vm import Opcodes as Op
273273
274274 @pytest.mark.valid_from("Istanbul")
275275 def test_chainid_blockchain(blockchain_test: BlockchainTestFiller, pre: Alloc):
You can’t perform that action at this time.
0 commit comments