From 72c56540c218b8d02094d7dd55e7e813871db198 Mon Sep 17 00:00:00 2001 From: Salman Ashraf Date: Tue, 9 Jul 2024 12:53:46 +0000 Subject: [PATCH] import fix --- api/models/agreement_signature_test.py | 3 ++- api/models/contributor_test.py | 3 ++- api/models/repository_test.py | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/api/models/agreement_signature_test.py b/api/models/agreement_signature_test.py index 84d4c27..324a7bb 100644 --- a/api/models/agreement_signature_test.py +++ b/api/models/agreement_signature_test.py @@ -11,7 +11,8 @@ class TestAgreementSignature(ModelTestCase[AgreementSignature]): - """ Test the AgreementSignature Model""" + """Test the AgreementSignature Model""" + fixtures = ["agreement_signatures"] def setUp(self): diff --git a/api/models/contributor_test.py b/api/models/contributor_test.py index 902b961..4808da6 100644 --- a/api/models/contributor_test.py +++ b/api/models/contributor_test.py @@ -9,7 +9,8 @@ class TestContributor(ModelTestCase[Contributor]): - """ Test the Contributor Model """ + """Test the Contributor Model""" + fixtures = ["contributors"] def setUp(self): diff --git a/api/models/repository_test.py b/api/models/repository_test.py index b7aa9eb..ab3361b 100644 --- a/api/models/repository_test.py +++ b/api/models/repository_test.py @@ -11,7 +11,8 @@ class TestRepository(ModelTestCase[Repository]): - """ Test the Repository Model""" + """Test the Repository Model""" + fixtures = ["repositories"] def setUp(self):