chore(api): reformat code

This commit is contained in:
QuantumGhost
2026-01-19 10:48:45 +08:00
parent b085df9425
commit 578cac35e3
2 changed files with 2 additions and 1 deletions

View File

@ -61,8 +61,8 @@ from services.workflow.workflow_converter import WorkflowConverter
from .errors.workflow_service import DraftWorkflowDeletionError, WorkflowInUseError
from .human_input_delivery_test_service import (
DeliveryTestContext,
DeliveryTestError,
DeliveryTestEmailRecipient,
DeliveryTestError,
DeliveryTestUnsupportedError,
HumanInputDeliveryTestService,
)

View File

@ -211,6 +211,7 @@ def test_submit_form_by_token_skips_enqueue_for_delivery_test(sample_form_record
enqueue_spy.assert_not_called()
def test_submit_form_by_token_passes_submission_user_id(sample_form_record, mock_session_factory, mocker):
session_factory, _ = mock_session_factory
repo = MagicMock(spec=HumanInputFormSubmissionRepository)