summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
authorWilliam Wolf <throughnothing@gmail.com>2011-09-20 14:43:50 -0400
committerWilliam Wolf <throughnothing@gmail.com>2011-09-20 14:43:50 -0400
commit2fdc37c21ee9c6533cf7452e4347a9fa9212c31d (patch)
treed7a48d870c2a3dc64f4919c231eae44c4b9231cb /nova
parent4ee5cab427a95d451a3f33e90d0d5f9d3879c12d (diff)
pep8 fixes
Diffstat (limited to 'nova')
-rw-r--r--nova/tests/api/openstack/test_servers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/nova/tests/api/openstack/test_servers.py b/nova/tests/api/openstack/test_servers.py
index cccbafcde..81ec64359 100644
--- a/nova/tests/api/openstack/test_servers.py
+++ b/nova/tests/api/openstack/test_servers.py
@@ -1162,7 +1162,7 @@ class ServersTest(test.TestCase):
self.assertEqual(servers_links[0]['rel'], 'next')
href_parts = urlparse.urlparse(servers_links[0]['href'])
- self.assertEqual('/v1.1/fake/servers', href_parts.path)
+ self.assertEqual('/v1.1/fake/servers', href_parts.path)
params = urlparse.parse_qs(href_parts.query)
self.assertDictMatch({'limit': ['3'], 'marker': ['2']}, params)
@@ -1180,7 +1180,7 @@ class ServersTest(test.TestCase):
self.assertEqual(servers_links[0]['rel'], 'next')
href_parts = urlparse.urlparse(servers_links[0]['href'])
- self.assertEqual('/v1.1/fake/servers', href_parts.path)
+ self.assertEqual('/v1.1/fake/servers', href_parts.path)
params = urlparse.parse_qs(href_parts.query)
self.assertDictMatch({'limit': ['3'], 'marker': ['2']}, params)
@@ -1198,7 +1198,7 @@ class ServersTest(test.TestCase):
self.assertEqual(servers_links[0]['rel'], 'next')
href_parts = urlparse.urlparse(servers_links[0]['href'])
- self.assertEqual('/v1.1/fake/servers', href_parts.path)
+ self.assertEqual('/v1.1/fake/servers', href_parts.path)
params = urlparse.parse_qs(href_parts.query)
self.assertDictMatch({'limit': ['3'], 'blah': ['2:t'],
'marker': ['2']}, params)