From ae8a75489ae29a1e8e4bd664b367a9c2fabb427c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 16 Feb 2026 17:23:28 +0000 Subject: [PATCH] Fix ruff W293 error - remove whitespace from blank line Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> --- tests/test_send_to_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_send_to_all.py b/tests/test_send_to_all.py index c72af91f..4b6726dc 100644 --- a/tests/test_send_to_all.py +++ b/tests/test_send_to_all.py @@ -186,7 +186,7 @@ class TestSendToAllDestinations: def test_file_not_found_error(self, mock_log): """Test that FileNotFoundError is raised when file doesn't exist.""" result = send_to_all_destinations.apply(args=["/nonexistent/file.pdf"]) - + # When task raises an exception, result.failed() returns True assert result.failed() # The exception should be FileNotFoundError