summaryrefslogtreecommitdiffstats
path: root/fnet/src/tests/scheduling/schedule.cpp
diff options
context:
space:
mode:
authorHåvard Pettersen <havardpe@oath.com>2019-07-01 17:33:43 +0000
committerHåvard Pettersen <havardpe@oath.com>2019-07-01 17:33:43 +0000
commitf3bf2f5b1a8b1dd1c244bb0df2d0c652959b557f (patch)
tree417bbdb86bfe09c69dc219d1c62779771b397ab5 /fnet/src/tests/scheduling/schedule.cpp
parentb6241e25aaefb59ee9b0251ce7284175fe647592 (diff)
use upper bound for current time estimate
Diffstat (limited to 'fnet/src/tests/scheduling/schedule.cpp')
-rw-r--r--fnet/src/tests/scheduling/schedule.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fnet/src/tests/scheduling/schedule.cpp b/fnet/src/tests/scheduling/schedule.cpp
index b563c7057ff..4ae4a2e07de 100644
--- a/fnet/src/tests/scheduling/schedule.cpp
+++ b/fnet/src/tests/scheduling/schedule.cpp
@@ -32,7 +32,7 @@ public:
if (b < a)
return false;
- if ((b - a) > (2 * FNET_Scheduler::SLOT_TICK))
+ if ((b - a) > (3 * FNET_Scheduler::SLOT_TICK))
return false;
return true;