From 5df846eb0a60d38471bf354f86a47670ec4b87ff Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Wed, 6 Jul 2016 15:21:57 -0400 Subject: [PATCH] remove unnecessary fixture from org_credential --- awx/main/tests/functional/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/functional/conftest.py b/awx/main/tests/functional/conftest.py index 7511f0ef78..076f368631 100644 --- a/awx/main/tests/functional/conftest.py +++ b/awx/main/tests/functional/conftest.py @@ -158,7 +158,7 @@ def machine_credential(): return Credential.objects.create(name='machine-cred', kind='ssh', username='test_user', password='pas4word') @pytest.fixture -def org_credential(organization, credential): +def org_credential(organization): return Credential.objects.create(kind='aws', name='test-cred', organization=organization) @pytest.fixture