From 9a9e307dd606e2d6e863d171ce8076ba12d82ec8 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 12:32:08 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- .../services/test_saved_message_service.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/api/tests/test_containers_integration_tests/services/test_saved_message_service.py b/api/tests/test_containers_integration_tests/services/test_saved_message_service.py index fe213fd8ca..badbed2a61 100644 --- a/api/tests/test_containers_integration_tests/services/test_saved_message_service.py +++ b/api/tests/test_containers_integration_tests/services/test_saved_message_service.py @@ -497,9 +497,7 @@ class TestSavedMessageService: # The message should still exist, only the saved_message should be deleted assert db_session_with_containers.query(Message).where(Message.id == message.id).first() is not None - def test_save_for_end_user( - self, db_session_with_containers: Session, mock_external_service_dependencies - ): + def test_save_for_end_user(self, db_session_with_containers: Session, mock_external_service_dependencies): """Test saving a message for an EndUser.""" app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) end_user = self._create_test_end_user(db_session_with_containers, app) @@ -570,9 +568,7 @@ class TestSavedMessageService: # Should not raise SavedMessageService.delete(app_model=app, user=account, message_id="non-existent-id") - def test_delete_for_end_user( - self, db_session_with_containers: Session, mock_external_service_dependencies - ): + def test_delete_for_end_user(self, db_session_with_containers: Session, mock_external_service_dependencies): """Test deleting a saved message for an EndUser.""" app, account = self._create_test_app_and_account(db_session_with_containers, mock_external_service_dependencies) end_user = self._create_test_end_user(db_session_with_containers, app)