diff options
author | Andrew Brookins <andrew.brookins@redislabs.com> | 2020-07-09 16:30:10 -0700 |
---|---|---|
committer | Andrew Brookins <andrew.brookins@redislabs.com> | 2020-07-09 16:30:10 -0700 |
commit | a1e5a7685fda4fc8ebe6456988c18e14724bb05a (patch) | |
tree | 01e82c0396e792e81302d70c29e15f618dc309c4 /tests/test_connection_pool.py | |
parent | c31ea12e89141dd90a69180060ae386948831f19 (diff) | |
download | redis-py-a1e5a7685fda4fc8ebe6456988c18e14724bb05a.tar.gz |
Fix flake8 errors
Diffstat (limited to 'tests/test_connection_pool.py')
-rw-r--r-- | tests/test_connection_pool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_connection_pool.py b/tests/test_connection_pool.py index 2f8ffbf..40ac340 100644 --- a/tests/test_connection_pool.py +++ b/tests/test_connection_pool.py @@ -129,7 +129,7 @@ class TestBlockingConnectionPool(object): # we should have waited at least 0.1 seconds assert time.time() - start >= 0.1 - def test_connection_pool_blocks_until_another_connection_released(self, master_host): + def test_connection_pool_blocks_until_another_connection_released(self, master_host): # noqa: E501 """ When out of connections, block until another connection is released to the pool |