From 5582490364031ca014f79084b36ce14a52358899 Mon Sep 17 00:00:00 2001 From: protolambda Date: Wed, 14 Jul 2021 13:40:34 +0200 Subject: [PATCH] Apply missing spec_test decorators, to handle generator_mode flag --- .../altair/block_processing/test_process_sync_aggregate.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/core/pyspec/eth2spec/test/altair/block_processing/test_process_sync_aggregate.py b/tests/core/pyspec/eth2spec/test/altair/block_processing/test_process_sync_aggregate.py index b9ac8a954..ad285f43c 100644 --- a/tests/core/pyspec/eth2spec/test/altair/block_processing/test_process_sync_aggregate.py +++ b/tests/core/pyspec/eth2spec/test/altair/block_processing/test_process_sync_aggregate.py @@ -26,6 +26,7 @@ from eth2spec.test.context import ( with_presets, spec_state_test, always_bls, + spec_test, ) from eth2spec.utils.hash_function import hash @@ -534,6 +535,7 @@ def test_random_all_but_one_participating_with_duplicates(spec, state): @with_altair_and_later @with_presets([MAINNET], reason="to create duplicate committee") +@spec_test @with_custom_state(balances_fn=misc_balances, threshold_fn=default_activation_threshold) @single_phase def test_random_misc_balances_and_half_participation_with_duplicates(spec, state): @@ -596,6 +598,7 @@ def test_random_all_but_one_participating_without_duplicates(spec, state): @with_altair_and_later @with_presets([MINIMAL], reason="to create nonduplicate committee") +@spec_test @with_custom_state(balances_fn=misc_balances, threshold_fn=default_activation_threshold) @single_phase def test_random_misc_balances_and_half_participation_without_duplicates(spec, state):