We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4a9825 commit 8af9a3fCopy full SHA for 8af9a3f
tests/test_connection_pool.py
@@ -450,7 +450,7 @@ class MyConnection(redis.UnixDomainSocketConnection):
450
pass
451
452
pool = redis.ConnectionPool.from_url(
453
- 'unix:///socket', connection_class=MyConnection
+ "unix:///socket", connection_class=MyConnection
454
)
455
assert pool.connection_class == MyConnection
456
@@ -469,7 +469,7 @@ class MyConnection(redis.SSLConnection):
469
470
471
472
- 'rediss://my.host', connection_class=MyConnection
+ "rediss://my.host", connection_class=MyConnection
473
474
475
0 commit comments