Skip to content

Commit

Permalink
Update test case for instance type modification
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorenz Bateman committed Jun 20, 2017
1 parent 693b65e commit d7a28d1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_update_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,15 @@ def test_build_run_instances_params():
options = {
'cluster_name': 'my-cluster-name',
'docker_image': 'docker.registry/cassandra:123',
'taupage_ami_id': 'ami-654321'
'taupage_ami_id': 'ami-654321',
'instance_type': 'm4.xlarge'
}
expected = {
'MinCount': 1,
'MaxCount': 1,
'ImageId': 'ami-654321',
'SecurityGroupIds': ['sg-abcdef', 'sg-654321'],
'InstanceType': 't2.micro',
'InstanceType': 'm4.xlarge',
'SubnetId': 'sn-123',
'PrivateIpAddress': '172.31.128.11',
'BlockDeviceMappings': [],
Expand Down

0 comments on commit d7a28d1

Please sign in to comment.