summaryrefslogtreecommitdiff
path: root/tests/backends
diff options
context:
space:
mode:
Diffstat (limited to 'tests/backends')
-rw-r--r--tests/backends/tests.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/backends/tests.py b/tests/backends/tests.py
index da20d94442..918fc32166 100644
--- a/tests/backends/tests.py
+++ b/tests/backends/tests.py
@@ -687,11 +687,15 @@ class ThreadTests(TransactionTestCase):
conn.inc_thread_sharing()
connections_dict[id(conn)] = conn
try:
- for x in range(2):
+ num_new_threads = 2
+ for x in range(num_new_threads):
t = threading.Thread(target=runner)
t.start()
t.join()
- self.assertEqual(len(connections_dict), 6)
+ self.assertEqual(
+ len(connections_dict),
+ len(connections.all()) * (num_new_threads + 1),
+ )
finally:
# Finish by closing the connections opened by the other threads
# (the connection opened in the main thread will automatically be