From 48a45b2f3fdebe979d33a8ae31be9d3a9eed8423 Mon Sep 17 00:00:00 2001 From: z-bowen Date: Thu, 23 Aug 2018 12:05:08 +0200 Subject: [PATCH] Problem: Typo in dummy parameter Solution: Fixed it --- tests/commands/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/test_commands.py b/tests/commands/test_commands.py index d58b6ea9..27f5f0f0 100644 --- a/tests/commands/test_commands.py +++ b/tests/commands/test_commands.py @@ -28,7 +28,7 @@ def test_make_sure_we_dont_remove_any_command(): assert parser.parse_args(['upsert-validator', 'new', 'TEMP_PUB_KEYPAIR', '10', 'TEMP_NODE_ID', '--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 + 'TEMP_PATH_TO_PRIVATE_KEY']).command @pytest.mark.tendermint