From 7d2102102bf9fbbbab46e5661b331e18413882d2 Mon Sep 17 00:00:00 2001 From: adamscmRH Date: Mon, 3 Jul 2017 15:44:12 -0400 Subject: [PATCH] Fix duplicate instances, & styling --- awx/main/tests/functional/test_instances.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/functional/test_instances.py b/awx/main/tests/functional/test_instances.py index 1e7dc9cbb5..6444d0d0d3 100644 --- a/awx/main/tests/functional/test_instances.py +++ b/awx/main/tests/functional/test_instances.py @@ -26,7 +26,7 @@ def test_instance_dup(org_admin, organization, project, instance_factory, instan api_num_instances_oa = list_response2.data.items()[0][1] assert actual_num_instances == api_num_instances_auditor - #Note: The org_admin will not see the default 'tower' node because it is not in it's group, as expected + # Note: The org_admin will not see the default 'tower' node because it is not in it's group, as expected assert api_num_instances_oa == (actual_num_instances - 1)