summaryrefslogtreecommitdiff
path: root/cliapp/settings_tests.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-04-18 10:40:37 +0300
committerLars Wirzenius <liw@liw.fi>2015-04-18 10:56:55 +0300
commitd3b79bed48895150fb7c33f577716a900fda3833 (patch)
tree7175e2b3d3dedc7aa4d4f0e26771699deec1d0d4 /cliapp/settings_tests.py
parent6d7daee29388fb3520cd70ed3cf0a4c085f80f69 (diff)
downloadcliapp-d3b79bed48895150fb7c33f577716a900fda3833.tar.gz
Run pep8 in "make check" and fix so it passes
Diffstat (limited to 'cliapp/settings_tests.py')
-rw-r--r--cliapp/settings_tests.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/cliapp/settings_tests.py b/cliapp/settings_tests.py
index f78d43a..b5b9eaa 100644
--- a/cliapp/settings_tests.py
+++ b/cliapp/settings_tests.py
@@ -414,7 +414,7 @@ unknown = variable
def test_require_raises_error_when_one_value_of_several_is_unset(self):
self.settings.string(['foo'], 'foo help')
- self.settings.string(['bar'], 'bar help', default=None )
+ self.settings.string(['bar'], 'bar help', default=None)
args = ['foo', 'bar']
self.assertRaises(cliapp.AppException, self.settings.require, *args)
@@ -451,4 +451,3 @@ bar = dodo
self.assertEqual(cp.get('config', 'foo'), 'yeehaa')
self.assertEqual(cp.options('other'), ['bar'])
self.assertEqual(cp.get('other', 'bar'), 'dodo')
-