diff --git a/test_generators/operations/main.py b/test_generators/operations/main.py index 88c3020323..41a6ff806e 100644 --- a/test_generators/operations/main.py +++ b/test_generators/operations/main.py @@ -20,8 +20,8 @@ create_suite('attester_slashing', 'mainnet', lambda: generate_from_tests(test_process_attester_slashing)), create_suite('block_header', 'minimal', lambda: generate_from_tests(test_process_block_header)), create_suite('block_header', 'mainnet', lambda: generate_from_tests(test_process_block_header)), - create_suite('deposits', 'minimal', lambda: generate_from_tests(test_process_deposit)), - create_suite('deposits', 'mainnet', lambda: generate_from_tests(test_process_deposit)), + create_suite('deposit', 'minimal', lambda: generate_from_tests(test_process_deposit)), + create_suite('deposit', 'mainnet', lambda: generate_from_tests(test_process_deposit)), create_suite('proposer_slashing', 'minimal', lambda: generate_from_tests(test_process_proposer_slashing)), create_suite('proposer_slashing', 'mainnet', lambda: generate_from_tests(test_process_proposer_slashing)), create_suite('transfer', 'minimal', lambda: generate_from_tests(test_process_transfer)), diff --git a/test_generators/operations/suite_creator.py b/test_generators/operations/suite_creator.py index 0186d026f0..d27e3efc19 100644 --- a/test_generators/operations/suite_creator.py +++ b/test_generators/operations/suite_creator.py @@ -29,7 +29,7 @@ def suite_definition(configs_path: str) -> gen_typing.TestSuiteOutput: return ("%s_%s" % (operation_name, config_name), operation_name, gen_suite.render_suite( title="%s operation" % operation_name, - summary="Test suite for deposit type operation processing", + summary="Test suite for %s type operation processing" % operation_name, forks_timeline="testing", forks=["phase0"], config=config_name,