Skip to content

Commit

Permalink
Fix test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekGawd committed Jul 28, 2023
1 parent c6f2c79 commit 4ac96d6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions care/facility/tests/test_consultation_bed_api.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from enum import Enum

from rest_framework import status
from rest_framework.test import APIRequestFactory, APITestCase
from rest_framework.test import APIRequestFactory
from rest_framework_simplejwt.tokens import RefreshToken

from care.facility.tests.mixins import TestClassMixin
from care.utils.tests.test_base import TestBase


Expand Down Expand Up @@ -63,7 +62,7 @@ class ExpectedBareMinimumLocationObjectKeys(Enum):
NAME = "name"


class ConsultationBedTestCase(TestBase, TestClassMixin, APITestCase):
class ConsultationBedTestCase(TestBase):
def setUp(self):
self.factory = APIRequestFactory()
self.consultation_bed = self.create_consultation_bed()
Expand Down

0 comments on commit 4ac96d6

Please sign in to comment.