From 366b3f21c6e36d05836bd61a7fe7e5f11adbe4b1 Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Wed, 15 Nov 2023 17:44:47 +0100 Subject: [PATCH] tests: Increase a sleep --- tests/pexpects/exit_nohang.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pexpects/exit_nohang.py b/tests/pexpects/exit_nohang.py index 1cd32ceb5..0d370328a 100644 --- a/tests/pexpects/exit_nohang.py +++ b/tests/pexpects/exit_nohang.py @@ -31,7 +31,7 @@ exe_path = os.environ.get("fish_test_helper") sp.sendline(exe_path + " nohup_wait") # We expect it to transfer tty ownership to fish_test_helper. -sleep(0.1) +sleep(1) tty_owner = os.tcgetpgrp(sp.spawn.child_fd) if fish_pid == tty_owner: os.kill(fish_pid, signal.SIGKILL)