From f183667b4cfb9626e54c90a8a2f2d20f070736a5 Mon Sep 17 00:00:00 2001 From: "Chayim I. Kirshen" Date: Thu, 2 Dec 2021 18:23:48 +0200 Subject: [PATCH] linter fix - black merge issue --- tests/test_connection_pool.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_connection_pool.py b/tests/test_connection_pool.py index 276e77cdb9..138fcad4c9 100644 --- a/tests/test_connection_pool.py +++ b/tests/test_connection_pool.py @@ -450,7 +450,7 @@ class MyConnection(redis.UnixDomainSocketConnection): 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 MyConnection(redis.SSLConnection): pass pool = redis.ConnectionPool.from_url( - 'rediss://my.host', connection_class=MyConnection + "rediss://my.host", connection_class=MyConnection ) assert pool.connection_class == MyConnection