Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Commit

Permalink
Merge "Fix list services API test"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed Feb 3, 2015
2 parents 6176755 + bf3f9b7 commit 2be2bc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/api/services/test_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def test_list_services_multiple_page(self, num):
# get second page
next_page_uri = urlparse.urlparse(body['links'][0]['href'])
marker = urlparse.parse_qs(next_page_uri.query)['marker'][0]
url_param = {'marker': marker}
url_param = {'marker': marker, 'limit': 1}
resp = self.client.list_services(param=url_param)
self.assertEqual(resp.status_code, 200)

Expand Down

0 comments on commit 2be2bc6

Please sign in to comment.