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)