From 505bdba8f8aaa7be89591e28b8fb8e7e83780ca1 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Mon, 23 Aug 2021 12:49:36 -0700 Subject: [PATCH] fix imports --- .../pyspec/eth2spec/test/altair/sanity/test_blocks_random.py | 4 ++-- .../pyspec/eth2spec/test/phase0/sanity/test_blocks_random.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/core/pyspec/eth2spec/test/altair/sanity/test_blocks_random.py b/tests/core/pyspec/eth2spec/test/altair/sanity/test_blocks_random.py index bc391b1f7..d546588d7 100644 --- a/tests/core/pyspec/eth2spec/test/altair/sanity/test_blocks_random.py +++ b/tests/core/pyspec/eth2spec/test/altair/sanity/test_blocks_random.py @@ -1,5 +1,5 @@ -from tests.core.pyspec.eth2spec.test.helpers.constants import ALTAIR -from tests.core.pyspec.eth2spec.test.context import ( +from eth2spec.test.helpers.constants import ALTAIR +from eth2spec.test.context import ( misc_balances_in_default_range_with_many_validators, with_phases, zero_activation_threshold, diff --git a/tests/core/pyspec/eth2spec/test/phase0/sanity/test_blocks_random.py b/tests/core/pyspec/eth2spec/test/phase0/sanity/test_blocks_random.py index 1244785cd..96193c3f9 100644 --- a/tests/core/pyspec/eth2spec/test/phase0/sanity/test_blocks_random.py +++ b/tests/core/pyspec/eth2spec/test/phase0/sanity/test_blocks_random.py @@ -1,5 +1,5 @@ -from tests.core.pyspec.eth2spec.test.helpers.constants import PHASE0 -from tests.core.pyspec.eth2spec.test.context import ( +from eth2spec.test.helpers.constants import PHASE0 +from eth2spec.test.context import ( misc_balances_in_default_range_with_many_validators, with_phases, zero_activation_threshold,