summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2021-12-02 18:36:03 +0200
committerGitHub <noreply@github.com>2021-12-02 18:36:03 +0200
commit8af9a3f559452cde86b234ee29cfb5627eb69e5b (patch)
tree7c580fa48de635d411c1de2f5b5a72927b972568
parentd4a9825a72e1b7715d79ce8134e678d9ef537dce (diff)
downloadredis-py-8af9a3f559452cde86b234ee29cfb5627eb69e5b.tar.gz
Fixing lint merge issue (#1770)
-rw-r--r--tests/test_connection_pool.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_connection_pool.py b/tests/test_connection_pool.py
index 276e77c..138fcad 100644
--- a/tests/test_connection_pool.py
+++ b/tests/test_connection_pool.py
@@ -450,7 +450,7 @@ class TestConnectionPoolUnixSocketURLParsing:
pass
pool = redis.ConnectionPool.from_url(
- 'unix:///socket', connection_class=MyConnection
+ "unix:///socket", connection_class=MyConnection
)
assert pool.connection_class == MyConnection
@@ -469,7 +469,7 @@ class TestSSLConnectionURLParsing:
pass
pool = redis.ConnectionPool.from_url(
- 'rediss://my.host', connection_class=MyConnection
+ "rediss://my.host", connection_class=MyConnection
)
assert pool.connection_class == MyConnection