We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4a9eba commit 1ca49e4Copy full SHA for 1ca49e4
tests/test_control_mode_regressions.py
@@ -598,9 +598,10 @@ def test_attach_to_existing_session(case: AttachFixture) -> None:
598
assert len(sessions) == 1
599
assert sessions[0].session_name == case.attach_to
600
601
+ # Only the control client is attached; attached_sessions should be empty
602
+ # because we filter control clients from "attached" semantics.
603
attached = server.attached_sessions
- assert len(attached) == 1
- assert attached[0].session_name == case.attach_to
604
+ assert attached == []
605
finally:
606
with contextlib.suppress(Exception):
607
bootstrap.kill()
0 commit comments