Skip to content

Commit

Permalink
PR 1052 apply suggestions
Browse files Browse the repository at this point in the history
Co-Authored-By: Danny Ryan <dannyjryan@gmail.com>
  • Loading branch information
protolambda and djrtwo committed May 11, 2019
1 parent d9baee2 commit 8570584
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test_generators/operations/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)),
Expand Down
2 changes: 1 addition & 1 deletion test_generators/operations/suite_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 8570584

Please sign in to comment.