aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-09-09 20:01:32 +0200
committerGuido Günther <agx@sigxcpu.org>2016-09-12 08:52:14 +0200
commit1adf645b81d35cd66ed433ed8ba7c6f90f4b3d81 (patch)
treef340264b90aa6e388c947e5ef63d123dae2ba468 /tests
parent71af82e0244106ba92737c117db55b188ebb9957 (diff)
19_test_gbp_scripts_config: flake8 clean
Diffstat (limited to 'tests')
-rw-r--r--tests/19_test_gbp_scripts_config.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/19_test_gbp_scripts_config.py b/tests/19_test_gbp_scripts_config.py
index 1d5f9104..209fcf5d 100644
--- a/tests/19_test_gbp_scripts_config.py
+++ b/tests/19_test_gbp_scripts_config.py
@@ -79,15 +79,15 @@ class TestGbpConfigCommand(unittest.TestCase):
def test_print_cmd_all_values(self):
"""Can we fetch the configuration for all commands"""
- for cmd in [ 'buildpackage',
- 'clone',
- 'config',
- 'create_remote_repo',
- 'dch',
- 'import_dsc',
- 'import_orig',
- 'pq',
- 'pull' ]:
+ for cmd in ['buildpackage',
+ 'clone',
+ 'config',
+ 'create_remote_repo',
+ 'dch',
+ 'import_dsc',
+ 'import_orig',
+ 'pq',
+ 'pull']:
printstub = self.AllValuesPrintStub(cmd)
ret = gbp.scripts.config.print_cmd_values(cmd, printstub)
self.assertIn('%s.color' % cmd, printstub.result.keys())