From 630918f521ece47ad92531f59ba979a8a8f8cbda Mon Sep 17 00:00:00 2001 From: cyli Date: Thu, 30 Apr 2015 17:47:48 -0700 Subject: [PATCH] Final passing test. --- mimic/test/test_nova.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mimic/test/test_nova.py b/mimic/test/test_nova.py index 4673d389b8..c7bee8da3a 100644 --- a/mimic/test/test_nova.py +++ b/mimic/test/test_nova.py @@ -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']] } )