From 1108a3a8e054018fb8d666b136acf44478767ee1 Mon Sep 17 00:00:00 2001 From: Bernie Hackett Date: Sat, 18 Mar 2017 15:57:50 -0700 Subject: [PATCH] PYTHON-1222 - Attempt to fix pooling test on zSeries --- test/test_pooling.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_pooling.py b/test/test_pooling.py index 516ee0646..2596213d7 100644 --- a/test/test_pooling.py +++ b/test/test_pooling.py @@ -469,12 +469,11 @@ class TestPoolMaxSize(_TestPoolingBase): with self.assertRaises(ValueError): rs_or_single_client(maxPoolSize=0) - @unittest.skip("PYTHON-1222") def test_max_pool_size_with_connection_failure(self): # The pool acquires its semaphore before attempting to connect; ensure # it releases the semaphore on connection failure. test_pool = Pool( - ('example.com', 27017), + ('somedomainthatdoesntexist.org', 27017), PoolOptions( max_pool_size=1, connect_timeout=1,