Skip to content
This repository has been archived by the owner on Jan 2, 2019. It is now read-only.

Commit

Permalink
try tests again (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
EarthmanT authored Aug 8, 2018
1 parent 7f9f78d commit 3070894
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions manager_tests/test_awssdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ def inputs(self):
try:
return {
'password': os.environ['ECOSYSTEM_SESSION_PASSWORD'],
'ec2_region_name': 'ap-northeast-2',
'ec2_region_endpoint': 'ap-northeast-2.amazonaws.com',
'availability_zone': 'ap-northeast-2c',
'ec2_region_name': 'eu-central-1',
'ec2_region_endpoint': 'ec2.eu-central-1.amazonaws.com',
'availability_zone': 'eu-central-1b',
'aws_secret_access_key': os.environ['AWS_SECRET_ACCESS_KEY'],
'aws_access_key_id': os.environ['AWS_ACCESS_KEY_ID']
}
Expand Down Expand Up @@ -185,9 +185,9 @@ def check_resources_in_deployment_deleted(self, nodes, node_names):
'LoadBalancerName')
if 'LifecycleHook' in node_type:
lifecycle_hook_command = \
'aws autoscaling describe-lifecycle-hooks ' \
'--auto-scaling-group-name test-autoscaling ' \
'--lifecycle-hook-names {0}'.format(external_id)
'aws autoscaling describe-lifecycle-hooks' \
' --auto-scaling-group-name test-autoscaling' \
' --lifecycle-hook-names {0}'.format(external_id)
self.check_resource_method(
command=lifecycle_hook_command, exists=False)
else:
Expand Down

0 comments on commit 3070894

Please sign in to comment.