Skip to content

Commit 32528e5

Browse files
committed
test(lfx): drop obsolete inputs kwarg from capability stream-close test
Coordinator.stream() no longer takes an inputs parameter (the streaming path reads initial_inputs from runtime_options); update the capability routing stream-close test to the current signature.
1 parent 32f9fe1 commit 32528e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lfx/tests/unit/execution/test_capability_routing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def is_untrusted_node(self, _node: dict[str, Any], _context: CapabilityContext |
227227
capability_service=capability_service,
228228
)
229229

230-
stream = coordinator.stream(SimpleNamespace(), inputs=[{}])
230+
stream = coordinator.stream(SimpleNamespace())
231231
assert await anext(stream) == "tick"
232232
await stream.aclose()
233233
await asyncio.sleep(0)

0 commit comments

Comments
 (0)