Skip to content

Commit cd1c329

Browse files
committed
Fix tests
1 parent 1662d7a commit cd1c329

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/groovy/com/dtolabs/rundeck/plugin/resources/ec2/InstanceToNodeMapperSpec.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ class InstanceToNodeMapperSpec extends Specification {
325325
def mapper = new InstanceToNodeMapper(supplier, mapping, pageResults);
326326
mapper.setEndpoint(endpoints.join(', '))
327327
when:
328-
def instances = mapper.performQuery()
328+
def instances = mapper.performQuery(false)
329329
then:
330330
instances!=null
331331
instances.getNode("aninstanceId").getAttributes().containsKey("region")
@@ -384,7 +384,7 @@ class InstanceToNodeMapperSpec extends Specification {
384384
def mapper = new InstanceToNodeMapper(supplier, mapping, pageResults);
385385
mapper.setEndpoint(endpoint)
386386
when:
387-
def instances = mapper.performQuery()
387+
def instances = mapper.performQuery(false)
388388
then:
389389
instances!=null
390390
instances.getNode("aninstanceId").getAttributes().containsKey("region")

0 commit comments

Comments
 (0)