From 201242f302550a59f4e05976e0fe9a6078cc1da7 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Fri, 5 May 2017 18:18:40 +0800 Subject: [PATCH] Fix call to wrong method in ansible-test. --- test/runner/lib/cloud/aws.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner/lib/cloud/aws.py b/test/runner/lib/cloud/aws.py index aab90c96f4..5b4baeb8c1 100644 --- a/test/runner/lib/cloud/aws.py +++ b/test/runner/lib/cloud/aws.py @@ -59,7 +59,7 @@ class AwsCloudProvider(CloudProvider): aci = self._create_ansible_core_ci() - response = aci.start_remote() + response = aci.start() if not self.args.explain: credentials = response['aws']['credentials']