summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
authorMORITA Kazutaka <morita.kazutaka@gmail.com>2011-05-27 13:36:59 +0900
committerMORITA Kazutaka <morita.kazutaka@gmail.com>2011-05-27 13:36:59 +0900
commit8b4c91b9f2c28e4809659f199affddbd66482dbb (patch)
tree0d0d1603d29889868ca40f5a4403f92202747cb3 /nova/tests
parent6b0ed0cb61838d01b15df26fc32df0de90f1cfbe (diff)
Fix pep8 violations.
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/test_volume.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/nova/tests/test_volume.py b/nova/tests/test_volume.py
index c66b66959..3472b1f59 100644
--- a/nova/tests/test_volume.py
+++ b/nova/tests/test_volume.py
@@ -193,8 +193,9 @@ class VolumeTestCase(test.TestCase):
self.volume.create_volume(self.context, volume_id)
snapshot_id = self._create_snapshot(volume_id)
self.volume.create_snapshot(self.context, volume_id, snapshot_id)
- self.assertEqual(snapshot_id, db.snapshot_get(context.get_admin_context(),
- snapshot_id).id)
+ self.assertEqual(snapshot_id,
+ db.snapshot_get(context.get_admin_context(),
+ snapshot_id).id)
self.volume.delete_snapshot(self.context, snapshot_id)
self.assertRaises(exception.NotFound,