change get_param method to get_int_param

This commit is contained in:
Koudai Aono 2018-01-18 13:05:07 +09:00
parent e4cf58d6fa
commit 518282dbd3
2 changed files with 3 additions and 1 deletions

View File

@ -123,7 +123,7 @@ class RDS2Response(BaseResponse):
start = all_ids.index(marker) + 1
else:
start = 0
page_size = int(self._get_param('MaxRecords', 50)) # the default is 100, but using 50 to make testing easier
page_size = self._get_int_param('MaxRecords', 50) # the default is 100, but using 50 to make testing easier
instances_resp = all_instances[start:start + page_size]
next_marker = None
if len(all_instances) > start + page_size:

View File

@ -197,6 +197,8 @@ def test_get_databases_paginated():
resp2 = conn.describe_db_instances(Marker=resp["Marker"])
resp2["DBInstances"].should.have.length_of(1)
resp3 = conn.describe_db_instances(MaxRecords=100)
resp3["DBInstances"].should.have.length_of(51)
@mock_rds2
def test_describe_non_existant_database():