From f6879bcc9ff979bf313c7dd155ab2e1fee8605d8 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Tue, 7 Jan 2020 22:16:29 +0100 Subject: [PATCH] tests: speedup by not waiting too long for servers --- libtest/wait.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libtest/wait.h b/libtest/wait.h index a39a853e..e5cdcb3d 100644 --- a/libtest/wait.h +++ b/libtest/wait.h @@ -74,7 +74,7 @@ public: } this_wait= retry * retry / 3 + 1; - libtest::dream(this_wait, 0); + libtest::dream(0, this_wait * 10000000); } } @@ -98,7 +98,7 @@ public: } this_wait= retry * retry / 3 + 1; - libtest::dream(this_wait, 0); + libtest::dream(0, this_wait * 10000000); } } -- 2.30.2