diff options
Diffstat (limited to 'tests/stdlib/tcputime.nim')
-rw-r--r-- | tests/stdlib/tcputime.nim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/stdlib/tcputime.nim b/tests/stdlib/tcputime.nim index 2fc46ee64..b0cc19c6c 100644 --- a/tests/stdlib/tcputime.nim +++ b/tests/stdlib/tcputime.nim @@ -1,13 +1,11 @@ - import times, os var e = epochTime() var c = cpuTime() -os.sleep(1500) +os.sleep(1000) e = epochTime() - e c = cpuTime() - c echo "epochTime: ", e, " cpuTime: ", c - |