Skip to content

Commit

Permalink
Final passing test.
Browse files Browse the repository at this point in the history
  • Loading branch information
cyli committed May 1, 2015
1 parent 3952d93 commit 630918f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mimic/test/test_nova.py
Expand Up @@ -614,13 +614,13 @@ def test_with_limit_eq_servers_only(self):
self.make_nova_app()
self.create_servers(2)
servers = self.list_servers(path)['servers']
with_params = self.list_servers(path, {'limit': 5})
with_params = self.list_servers(path, {'limit': 2})
self.match_body_with_links(
with_params,
expected_servers=servers,
expected_path=path,
expected_query_params={
'limit': ['1'], 'marker': [servers[0]['id']]
'limit': ['2'], 'marker': [servers[1]['id']]
}
)

Expand Down

0 comments on commit 630918f

Please sign in to comment.