summaryrefslogtreecommitdiff
path: root/tests/backends/postgresql/tests.py
diff options
context:
space:
mode:
authorSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2024-04-10 19:09:52 +0200
committerGitHub <noreply@github.com>2024-04-10 14:09:52 -0300
commitf973a70bfcbaa69507c3fad043b5b56872bc2be5 (patch)
treeff805a9edd4d8c79444a12e1b910e3c4ccd6e10c /tests/backends/postgresql/tests.py
parent42435fc55cbf7c04c1389ee46cc50e2565b40e37 (diff)
Made postgresql.tests.Tests.test_connect_pool less flaky by increasing timeout value.
Diffstat (limited to 'tests/backends/postgresql/tests.py')
-rw-r--r--tests/backends/postgresql/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/backends/postgresql/tests.py b/tests/backends/postgresql/tests.py
index d28c5be253..47f8d94004 100644
--- a/tests/backends/postgresql/tests.py
+++ b/tests/backends/postgresql/tests.py
@@ -241,7 +241,7 @@ class Tests(TestCase):
new_connection.settings_dict["OPTIONS"]["pool"] = {
"min_size": 0,
"max_size": 2,
- "timeout": 0.1,
+ "timeout": 5,
}
self.assertIsNotNone(new_connection.pool)