From bee9468bd0b698f85bbb105fc7bb4f36508bf897 Mon Sep 17 00:00:00 2001 From: Zachary Bowen Date: Wed, 5 Sep 2018 10:51:32 +0200 Subject: [PATCH] Problem: `test_make_sure_we_dont_remove_any_command` does not check for `upsert-validator show` (#2499). Solution: Extend 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