summaryrefslogtreecommitdiff
path: root/cliapp/pluginmgr_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/pluginmgr_tests.py
parent6d7daee29388fb3520cd70ed3cf0a4c085f80f69 (diff)
downloadcliapp-d3b79bed48895150fb7c33f577716a900fda3833.tar.gz
Run pep8 in "make check" and fix so it passes
Diffstat (limited to 'cliapp/pluginmgr_tests.py')
-rw-r--r--cliapp/pluginmgr_tests.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/cliapp/pluginmgr_tests.py b/cliapp/pluginmgr_tests.py
index d458ac3..ccca868 100644
--- a/cliapp/pluginmgr_tests.py
+++ b/cliapp/pluginmgr_tests.py
@@ -50,7 +50,7 @@ class PluginManagerTests(unittest.TestCase):
self.pm = PluginManager()
self.pm.locations = ['test-plugins', 'not-exist']
self.pm.plugin_arguments = ('fooarg',)
- self.pm.plugin_keyword_arguments = { 'bar': 'bararg' }
+ self.pm.plugin_keyword_arguments = {'bar': 'bararg'}
self.files = sorted(['test-plugins/hello_plugin.py',
'test-plugins/aaa_hello_plugin.py',
@@ -115,4 +115,3 @@ class PluginManagerCompatibleApplicationVersionTests(unittest.TestCase):
def test_accepts_one_two_three(self):
self.assert_(self.pm.compatible_version('1.2.3'))
-