diff options
Diffstat (limited to 'tests/test_connection_pool.py')
-rw-r--r-- | tests/test_connection_pool.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_connection_pool.py b/tests/test_connection_pool.py index f258411..2aea1e4 100644 --- a/tests/test_connection_pool.py +++ b/tests/test_connection_pool.py @@ -19,8 +19,8 @@ class DummyConnection(object): def connect(self): pass - def is_ready_for_command(self): - return True + def can_read(self): + return False class TestConnectionPool(object): |