summaryrefslogtreecommitdiff
path: root/tests/test_utils
diff options
context:
space:
mode:
authorChristophe Baldy <baldychristophe@gmail.com>2022-11-24 19:41:08 +0100
committerGitHub <noreply@github.com>2022-11-24 19:41:08 +0100
commit70c945d6b31b41b320e57088702077864428fdc0 (patch)
treeea855aa375aa3844880fc747b919a2dff058265d /tests/test_utils
parent17472c3304050fbbf7a65976ab7b392184d081d1 (diff)
Used DatabaseFeatures.django_test_skips to skip AssertNumQueriesUponConnectionTests tests.
Diffstat (limited to 'tests/test_utils')
-rw-r--r--tests/test_utils/tests.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_utils/tests.py b/tests/test_utils/tests.py
index 9304f22a2e..79757045dd 100644
--- a/tests/test_utils/tests.py
+++ b/tests/test_utils/tests.py
@@ -235,10 +235,6 @@ class AssertNumQueriesTests(TestCase):
self.assertNumQueries(2, test_func)
-@unittest.skipUnless(
- connection.vendor != "sqlite" or not connection.is_in_memory_db(),
- "For SQLite in-memory tests, closing the connection destroys the database.",
-)
class AssertNumQueriesUponConnectionTests(TransactionTestCase):
available_apps = []