From 3753212f9648f892014166558ae7a74eb2ee5c58 Mon Sep 17 00:00:00 2001 From: Simone Scarduzio Date: Wed, 15 Oct 2025 11:22:00 +0200 Subject: [PATCH] style: Format test file with ruff MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- tests/unit/test_stats_algorithm.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/unit/test_stats_algorithm.py b/tests/unit/test_stats_algorithm.py index f56412c..7cdd04f 100644 --- a/tests/unit/test_stats_algorithm.py +++ b/tests/unit/test_stats_algorithm.py @@ -435,8 +435,10 @@ class TestBucketStatsAlgorithm: # Verify warning was logged for file1 warning_calls = mock_client.service.logger.warning.call_args_list - assert any("file1.zip.delta" in str(call) and "no original_size metadata" in str(call) - for call in warning_calls) + assert any( + "file1.zip.delta" in str(call) and "no original_size metadata" in str(call) + for call in warning_calls + ) def test_multiple_orphaned_references(self, mock_client): """Test detection of multiple orphaned reference.bin files."""