Problem: test_make_sure_we_dont_remove_any_command does not check for upsert-validator show (#2499).

Solution: Extend the test.
This commit is contained in:
Zachary Bowen 2018-09-05 10:51:32 +02:00 committed by Lev Berman
parent af2b5424c0
commit bee9468bd0

View File

@ -30,6 +30,7 @@ def test_make_sure_we_dont_remove_any_command():
'--private-key', 'TEMP_PATH_TO_PRIVATE_KEY']).command
assert parser.parse_args(['upsert-validator', 'approve', 'ELECTION_ID', '--private-key',
'TEMP_PATH_TO_PRIVATE_KEY']).command
assert parser.parse_args(['upsert-validator', 'show', 'ELECTION_ID']).command
@pytest.mark.tendermint