From 39f444836b4c354404edb51a0b8c683025ad008c Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Wed, 23 Mar 2016 17:25:27 -0400 Subject: [PATCH] flake8 fix --- awx/main/tests/functional/api/test_organization_counts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/main/tests/functional/api/test_organization_counts.py b/awx/main/tests/functional/api/test_organization_counts.py index 6d016decd0..6f785cf25f 100644 --- a/awx/main/tests/functional/api/test_organization_counts.py +++ b/awx/main/tests/functional/api/test_organization_counts.py @@ -25,8 +25,8 @@ def resourced_organization(organization, project, team, inventory, user): def test_org_counts_detail_view(resourced_organization, user, get): # Check that all types of resources are counted by a superuser external_admin = user('admin', True) - response = get(reverse('api:organization_detail', args=[resourced_organization.pk]), - external_admin) + response = get(reverse('api:organization_detail', + args=[resourced_organization.pk]), external_admin) assert response.status_code == 200 counts = response.data['summary_fields']['related_field_counts']