We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa2f770 commit 4ce925dCopy full SHA for 4ce925d
tests/examples/test/waiter/test_wait_until_ready.py
@@ -4,7 +4,6 @@
4
5
import contextlib
6
import re
7
-import time
8
from typing import TYPE_CHECKING
9
10
import pytest
@@ -27,9 +26,6 @@ def test_wait_until_ready(session: Session) -> None:
27
26
pane.send_keys("echo 'test command'")
28
pane.send_keys("ls")
29
30
- # Give the commands time to complete
31
- time.sleep(1.5) # Increased sleep time for stability
32
-
33
# For test purposes, look for any common shell prompt characters
34
# The wait_until_pane_ready function works either with:
35
# 1. A string to find (will use CONTAINS match_type)
0 commit comments