From 18a4d3d2d8dd4f86399b06450acfcd0588c69d10 Mon Sep 17 00:00:00 2001 From: vladvildanov Date: Thu, 19 Sep 2024 16:12:08 +0300 Subject: [PATCH] Codestyle changes --- tests/test_connection.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test_connection.py b/tests/test_connection.py index 0a5b9c15d9..13e5c95a24 100644 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -450,7 +450,8 @@ def test_clears_cache_on_disconnect(self, mock_connection, cache_conf): assert len(cache.get_collection()) == 0 @pytest.mark.skipif( - platform.python_implementation() == "PyPy", reason="Pypy doesn't support side_effect" + platform.python_implementation() == "PyPy", + reason="Pypy doesn't support side_effect", ) def test_read_response_returns_cached_reply(self, mock_cache, mock_connection): mock_connection.retry = "mock" @@ -531,7 +532,8 @@ def test_read_response_returns_cached_reply(self, mock_cache, mock_connection): ) @pytest.mark.skipif( - platform.python_implementation() == "PyPy", reason="Pypy doesn't support side_effect" + platform.python_implementation() == "PyPy", + reason="Pypy doesn't support side_effect", ) def test_triggers_invalidation_processing_on_another_connection( self, mock_cache, mock_connection