Cleanup updating ASGs. Closes #603.

This commit is contained in:
Steve Pulec 2016-05-04 22:10:11 -04:00
commit 8ce2d3c8bf
2 changed files with 20 additions and 9 deletions

View file

@ -437,5 +437,9 @@ def test_update_autoscaling_group_boto3():
response = client.update_auto_scaling_group(
AutoScalingGroupName='test_asg',
MinSize=1,
DesiredCapacity=1,
)
response = client.describe_auto_scaling_groups(
AutoScalingGroupNames=["test_asg"]
)
response['AutoScalingGroups'][0]['MinSize'].should.equal(1)