From 8e468d204acc8fae5ad2137ae5ddac5a466dc5b7 Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Thu, 27 Feb 2020 15:37:42 -0500 Subject: [PATCH] Allow for snooze multipliers less than 1. (#1564) --- module/VuFind/src/VuFindTest/Unit/MinkTestCase.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module/VuFind/src/VuFindTest/Unit/MinkTestCase.php b/module/VuFind/src/VuFindTest/Unit/MinkTestCase.php index ac7494b465f..79c838f4a57 100644 --- a/module/VuFind/src/VuFindTest/Unit/MinkTestCase.php +++ b/module/VuFind/src/VuFindTest/Unit/MinkTestCase.php @@ -129,11 +129,11 @@ abstract class MinkTestCase extends DbTestCase */ protected function snooze($secs = 1) { - $snoozeMultiplier = intval(getenv('VUFIND_SNOOZE_MULTIPLIER')); - if ($snoozeMultiplier < 1) { + $snoozeMultiplier = floatval(getenv('VUFIND_SNOOZE_MULTIPLIER')); + if ($snoozeMultiplier <= 0) { $snoozeMultiplier = 1; } - sleep($secs * $snoozeMultiplier); + usleep(1000000 * $secs * $snoozeMultiplier); } /** -- GitLab