Skip to content

Commit 682c066

Browse files
committed
Fix test_pool_max_inactive_time_04 to pass on slow CI boxes
1 parent 66ceb8a commit 682c066

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_pool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ async def worker(pool):
549549
workers = [worker(pool) for _ in range(50)]
550550
await asyncio.gather(*workers, loop=self.loop)
551551

552-
self.assertGreater(N, 50)
552+
self.assertGreaterEqual(N, 50)
553553

554554

555555
@unittest.skipIf(os.environ.get('PGHOST'), 'using remote cluster for testing')

0 commit comments

Comments
 (0)