From 82ef2d19a575b3dd3ca576edb89835588e44aa8a Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Fri, 19 Apr 2019 02:20:55 -0500 Subject: [PATCH] Reduce timeout for jobs regression test We've been moving away from full second timeouts, they were piling up. --- tests/jobs.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/jobs.in b/tests/jobs.in index 76192b1b4..7be84be4b 100644 --- a/tests/jobs.in +++ b/tests/jobs.in @@ -14,9 +14,10 @@ disown foo disown (jobs -p) or exit 0 +# Verify `jobs` output within a function lists background jobs # https://github.com/fish-shell/fish-shell/issues/5824 function foo - sleep 1 & - jobs -c + sleep 0.2 & + jobs -c end foo