From 9e13f3af51a164c254c876311453c848f8cf97d3 Mon Sep 17 00:00:00 2001 From: z-bowen Date: Fri, 31 Aug 2018 14:36:08 +0200 Subject: [PATCH] Problem: `test_make_sure_we_dont_remove_any_command` needs to be aligned to cover `upsert-validator show` Solution: Extended the test --- tests/commands/test_commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/commands/test_commands.py b/tests/commands/test_commands.py index 7b2f8e28..8c1325a9 100644 --- a/tests/commands/test_commands.py +++ b/tests/commands/test_commands.py @@ -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