Made postgresql.tests.Tests.test_connect_pool less flaky by increasing timeout value.

This commit is contained in:
Sarah Boyce 2024-04-10 19:09:52 +02:00 committed by GitHub
parent 42435fc55c
commit f973a70bfc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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)