Skip to content

Commit cbbd2cd

Browse files
committed
fix
1 parent e92220c commit cbbd2cd

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

src/ethereum_clis/tests/test_transition_tools_support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
Withdrawal,
3232
add_kzg_version,
3333
)
34-
from ethereum_test_tools.vm.opcode import Opcodes as Op
3534
from ethereum_test_types import Alloc
35+
from ethereum_test_vm import Opcodes as Op
3636

3737
BLOB_COMMITMENT_VERSION_KZG = 1
3838

src/ethereum_test_vm/tests/test_vm.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
import pytest
44

55
from 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(

src/pytest_plugins/filler/tests/test_prealloc_group.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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):

0 commit comments

Comments
 (0)