summaryrefslogtreecommitdiff
path: root/tests/acceptance
diff options
context:
space:
mode:
authorHarald Albers <github@albersweb.de>2018-01-30 00:57:07 +0100
committerHarald Albers <github@albersweb.de>2018-01-30 01:28:15 +0100
commit6cfbb7ed8a4a9ac022144465c9544f92ab6357b5 (patch)
treec621a9fc01f80ddda0eb4d4c0bd97fc767c8a45b /tests/acceptance
parent520fad331fa498862ebb3baf928820cb37b10aa6 (diff)
Add missing `-q|--quiet` options to increase consistency
Signed-off-by: Harald Albers <github@albersweb.de>
Diffstat (limited to 'tests/acceptance')
-rw-r--r--tests/acceptance/cli_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/acceptance/cli_test.py b/tests/acceptance/cli_test.py
index ade7d10a..8fb6dffe 100644
--- a/tests/acceptance/cli_test.py
+++ b/tests/acceptance/cli_test.py
@@ -207,13 +207,13 @@ class CLITestCase(DockerClientTestCase):
self.base_dir = None
result = self.dispatch([
'-f', 'tests/fixtures/invalid-composefile/invalid.yml',
- 'config', '-q'
+ 'config', '--quiet'
], returncode=1)
assert "'notaservice' must be a mapping" in result.stderr
def test_config_quiet(self):
self.base_dir = 'tests/fixtures/v2-full'
- assert self.dispatch(['config', '-q']).stdout == ''
+ assert self.dispatch(['config', '--quiet']).stdout == ''
def test_config_default(self):
self.base_dir = 'tests/fixtures/v2-full'