summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2013-01-11 12:01:42 +0100
committerMonty Taylor <mordred@inaugust.com>2013-01-11 18:09:25 -0800
commit9e5912f59e463e37dbe4505f9e79e9b254e64b87 (patch)
treed1b830db059c4852ebce07895f65c0345a8959e2 /tests
parenta8973c524c9fe901972ba61f34dafac7438417c9 (diff)
downloadoslo-9e5912f59e463e37dbe4505f9e79e9b254e64b87.tar.gz
oslo-9e5912f59e463e37dbe4505f9e79e9b254e64b87.tar.xz
oslo-9e5912f59e463e37dbe4505f9e79e9b254e64b87.zip
Fix pep8 E125 errors.
Caesar's wife must be above reproach. Change-Id: Iac85a57e71d403360f1567c07c8699057f0772fb
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_policy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_policy.py b/tests/unit/test_policy.py
index a0cae6f..684a113 100644
--- a/tests/unit/test_policy.py
+++ b/tests/unit/test_policy.py
@@ -450,7 +450,7 @@ class ParseStateMetaTestCase(unittest.TestCase):
self.assertTrue(hasattr(FakeState, 'reducers'))
for reduction, reducer in FakeState.reducers:
if (reduction == ['a', 'b', 'c'] or
- reduction == ['d', 'e', 'f']):
+ reduction == ['d', 'e', 'f']):
self.assertEqual(reducer, 'reduce1')
elif reduction == ['g', 'h', 'i']:
self.assertEqual(reducer, 'reduce2')