summaryrefslogtreecommitdiffstats
path: root/nova/tests
diff options
context:
space:
mode:
Diffstat (limited to 'nova/tests')
-rw-r--r--nova/tests/api/openstack/test_images.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/tests/api/openstack/test_images.py b/nova/tests/api/openstack/test_images.py
index 207947b3c..f610cbf9c 100644
--- a/nova/tests/api/openstack/test_images.py
+++ b/nova/tests/api/openstack/test_images.py
@@ -58,7 +58,8 @@ class BaseImageServiceTests(object):
id = self.service.create(self.context, fixture)
self.assertNotEquals(None, id)
- self.assertEquals(num_images + 1, len(self.service.index(self.context)))
+ self.assertEquals(num_images + 1,
+ len(self.service.index(self.context)))
def test_create_and_show_non_existing_image(self):