update name of utility module to be more specific

This commit is contained in:
Alex Stokes 2021-08-25 11:15:59 -07:00
parent a6f8870e18
commit 14518d4d64
No known key found for this signature in database
GPG Key ID: 99B3D88FD6C55A69
4 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ from eth2spec.test.context import (
with_custom_state, with_custom_state,
single_phase, single_phase,
) )
from eth2spec.test.utils.random import ( from eth2spec.test.utils.randomized_block_tests import (
run_generated_randomized_test, run_generated_randomized_test,
) )

View File

@ -17,7 +17,7 @@ from eth2spec.test.context import (
with_custom_state, with_custom_state,
single_phase, single_phase,
) )
from eth2spec.test.utils.random import ( from eth2spec.test.utils.randomized_block_tests import (
run_generated_randomized_test, run_generated_randomized_test,
) )

View File

@ -13,7 +13,7 @@ import warnings
from typing import Callable from typing import Callable
import itertools import itertools
from eth2spec.test.utils.random import ( from eth2spec.test.utils.randomized_block_tests import (
no_block, no_block,
no_op_validation, no_op_validation,
randomize_state, randomize_state,
@ -165,7 +165,7 @@ from eth2spec.test.context import (
with_custom_state, with_custom_state,
single_phase, single_phase,
) )
from eth2spec.test.utils.random import ( from eth2spec.test.utils.randomized_block_tests import (
run_generated_randomized_test, run_generated_randomized_test,
)""" )"""