summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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