From ac560f0212cef92156d4c181c3f226f6e2950a96 Mon Sep 17 00:00:00 2001 From: lda Date: Wed, 9 Sep 2026 19:56:05 +0700 Subject: [PATCH] style: format scheduling test --- tests/scheduling/test_schedule_expressions.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/scheduling/test_schedule_expressions.py b/tests/scheduling/test_schedule_expressions.py index 28fa12c7..4d7e4234 100644 --- a/tests/scheduling/test_schedule_expressions.py +++ b/tests/scheduling/test_schedule_expressions.py @@ -221,9 +221,7 @@ def test_graph_path_leaf_rejected_inside_schedule_traversal() -> None: from wf_core.models.input_bindings import PathExpression from wf_core.runtime.input_sources import MappingSourceResolver - graph_leaf = PathExpression.model_validate( - {"kind": "path", "path": "input.a"} - ) + graph_leaf = PathExpression.model_validate({"kind": "path", "path": "input.a"}) with pytest.raises(WorkflowExecutionError, match="graph paths are invalid"): resolve_schedule_expression( graph_leaf, # type: ignore[arg-type]