remove unnecessary fixture from org_credential

This commit is contained in:
AlanCoding 2016-07-06 15:21:57 -04:00
parent ddbe54f841
commit 5df846eb0a

View File

@ -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