Skip to content

Commit bf3fabf

Browse files
test: tolerate subprocess startup warnings
1 parent 52681d7 commit bf3fabf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/interaction/transports/test_stdio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ async def collect(params: LoggingMessageNotificationParams) -> None:
9292
# seeing it proves the process exited on its own rather than via the transport's terminate
9393
# escalation, without a timing-based assertion. The capture itself proves stderr passthrough:
9494
# the transport routes the child's stderr to the caller's `errlog` without consuming it.
95-
assert captured_stderr == snapshot("stdio-echo: clean exit\n")
95+
assert captured_stderr.endswith(snapshot("stdio-echo: clean exit\n"))
9696

9797

9898
@requirement("transport:stdio:stream-purity")

0 commit comments

Comments
 (0)