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 40dfe15 commit 5d7cd9fCopy full SHA for 5d7cd9f
tests/_internal/test_waiter.py
@@ -1989,12 +1989,6 @@ def test_wait_for_pane_content_empty(wait_pane: Pane) -> None:
1989
# Check that we have content (might include shell prompt)
1990
assert result.content is not None
1991
1992
- # Even if we don't match completely empty content (due to shell prompt),
1993
- # we should be able to verify the content is mostly empty
1994
- content_str = "\n".join(result.content)
1995
- assert len(content_str.strip()) <= 2 # Allow for minimal shell prompt chars
1996
-
1997
1998
def test_wait_for_pane_content_whitespace(wait_pane: Pane) -> None:
1999
"""Test waiting for pane content that contains only whitespace."""
2000
wait_pane.send_keys("clear", enter=True)
0 commit comments