From e73929b2c632eacdef2ec9699d910bda734cfe91 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Sat, 7 Nov 2020 07:53:15 +0100 Subject: [PATCH] tests/bind: Increase another delay I don't understand why, but somehow this waited 101ms and then acted as if it was under 80ms? --- tests/pexpects/bind.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pexpects/bind.py b/tests/pexpects/bind.py index 5771b9f63..96bfd931b 100644 --- a/tests/pexpects/bind.py +++ b/tests/pexpects/bind.py @@ -47,7 +47,7 @@ expect_prompt("\r\njkl ghi\r\n") # occur and the "t" should become part of the text that is echoed. send("echo mno pqr") send("\033") -sleep(0.100) +sleep(0.150) send("t\r") # emacs transpose words, default timeout: long delay expect_prompt("\r\nmno pqrt\r\n")