From 718e9916f031d3435c4b23b79a3dcb4aeab15da3 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Fri, 6 Jun 2014 15:52:28 -0400 Subject: [PATCH] Fix a bug in the mainline inventory test --- awx/main/tests/inventory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/inventory.py b/awx/main/tests/inventory.py index c4f78174e3..0d2eb0a41b 100644 --- a/awx/main/tests/inventory.py +++ b/awx/main/tests/inventory.py @@ -573,7 +573,7 @@ class InventoryTest(BaseTest): # access url1 = reverse('api:group_hosts_list', args=(groups[0].pk,)) alt_group_hosts = reverse('api:group_hosts_list', args=(groups[1].pk,)) - other_alt_group_hosts = reverse('api:group_hosts_list', args(groups[2].pk,)) + other_alt_group_hosts = reverse('api:group_hosts_list', args=(groups[2].pk,)) data = self.get(url1, expect=200, auth=self.get_normal_credentials()) self.assertEquals(data['count'], 2)