From 574c3b65b272f1995462d3b9b3a25c10c96fb667 Mon Sep 17 00:00:00 2001 From: John Westcott IV Date: Mon, 31 Aug 2020 10:52:58 -0400 Subject: [PATCH] Converting from string to array --- awx_collection/test/awx/test_instance_group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx_collection/test/awx/test_instance_group.py b/awx_collection/test/awx/test_instance_group.py index b548c59b6e..a5e00d5ab8 100644 --- a/awx_collection/test/awx/test_instance_group.py +++ b/awx_collection/test/awx/test_instance_group.py @@ -28,7 +28,7 @@ def test_instance_group_create(run_module, admin_user): # Set the new instance group only to the one instnace result = run_module('tower_instance_group', { 'name': 'foo-group', - 'instances': new_instance.hostname, + 'instances': [ new_instance.hostname ], 'state': 'present' }, admin_user) assert not result.get('failed', False), result