From 1dafa610f10217a63b338205c455d4bc51ea03a1 Mon Sep 17 00:00:00 2001 From: stealthycoin Date: Wed, 29 Nov 2017 00:29:44 -0800 Subject: [PATCH] Fix ec2 test --- tests/integration/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_cli.py b/tests/integration/test_cli.py index 804cea825496..cc2528fb82ca 100644 --- a/tests/integration/test_cli.py +++ b/tests/integration/test_cli.py @@ -241,7 +241,7 @@ def test_help_usage_service_level(self): self.assertIn('aws: error', p.stderr) def test_help_usage_operation_level(self): - p = aws('ec2 run-instances') + p = aws('ec2 run-instances --ImageId foobar') self.assertIn('usage: aws [options] ' ' [ ...] [parameters]', p.stderr)