test(flow): update the flow_execution_span caller for the resumed argument

Adding the resumed marker changed a signature that tests/utilities/test_events.py
asserts on exactly, and that assertion was not re-run before pushing.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01ASfWmW3RGy4qAQm6s8U9jH
This commit is contained in:
Joao Moura
2026-08-11 16:35:50 -07:00
parent 8b43cb125a
commit 1d3a41a6f9

View File

@@ -506,7 +506,7 @@ def test_flow_emits_start_event(reset_event_listener_singleton):
assert event_received.wait(timeout=5), "Timeout waiting for flow started event"
mock_telemetry.flow_execution_span.assert_called_once_with(
"TestFlow", ["begin"], "user"
"TestFlow", ["begin"], "user", False
)
assert len(received_events) == 1
assert received_events[0].flow_name == "TestFlow"