Skip to content

Commit 18a4d3d

Browse files
committed
Codestyle changes
1 parent 6d63a59 commit 18a4d3d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/test_connection.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,8 @@ def test_clears_cache_on_disconnect(self, mock_connection, cache_conf):
450450
assert len(cache.get_collection()) == 0
451451

452452
@pytest.mark.skipif(
453-
platform.python_implementation() == "PyPy", reason="Pypy doesn't support side_effect"
453+
platform.python_implementation() == "PyPy",
454+
reason="Pypy doesn't support side_effect",
454455
)
455456
def test_read_response_returns_cached_reply(self, mock_cache, mock_connection):
456457
mock_connection.retry = "mock"
@@ -531,7 +532,8 @@ def test_read_response_returns_cached_reply(self, mock_cache, mock_connection):
531532
)
532533

533534
@pytest.mark.skipif(
534-
platform.python_implementation() == "PyPy", reason="Pypy doesn't support side_effect"
535+
platform.python_implementation() == "PyPy",
536+
reason="Pypy doesn't support side_effect",
535537
)
536538
def test_triggers_invalidation_processing_on_another_connection(
537539
self, mock_cache, mock_connection

0 commit comments

Comments
 (0)