change get_param method to get_int_param

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

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():