fix onFuturePause using template arg, not future object

This commit is contained in:
Jaremy Creechley 2023-10-31 12:38:47 -07:00
parent 74e5ebaf4a
commit bd656ab6df
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300

View File

@ -248,10 +248,10 @@ suite "Asynchronous utilities test suite":
echo "avg runTime:\t", v.totalRunTime div count, "\ttotal: ", v.totalRunTime
if k.procedure == "simpleAsync1":
echo "v: ", v
check v.totalExecTime >= 150.milliseconds()
check v.totalExecTime >= 100.milliseconds()
check v.totalExecTime <= 180.milliseconds()
check v.totalRunTime >= 200.milliseconds()
check v.totalRunTime >= 150.milliseconds()
check v.totalRunTime <= 240.milliseconds()
discard
echo ""