From f67f5df29dcd5f86ae92918ce7f0ed6ca6167262 Mon Sep 17 00:00:00 2001
From: Saurabh Kumar <theskumar@users.noreply.github.com>
Date: Tue, 26 Jul 2022 12:45:43 +0530
Subject: [PATCH] chore(apply): fix test case for review form

Use `django.test.TestCase` instead of `unittest.TestCase` to
enable DB access
---
 hypha/apply/review/tests/test_admin.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hypha/apply/review/tests/test_admin.py b/hypha/apply/review/tests/test_admin.py
index 56b02b381..247987d6a 100644
--- a/hypha/apply/review/tests/test_admin.py
+++ b/hypha/apply/review/tests/test_admin.py
@@ -1,4 +1,4 @@
-from unittest import TestCase
+from django.test import TestCase
 
 from hypha.apply.review.models import ReviewForm
 
-- 
GitLab