1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: fix the remaining obsolete reference to time.sleep and time.usleep

This commit is contained in:
Delyan Angelov
2021-02-22 09:12:23 +02:00
parent da05c7ed1a
commit c37daba41d
6 changed files with 14 additions and 14 deletions

View File

@@ -31,10 +31,10 @@ import benchmark
mut b := benchmark.start()
// your code section 1 ...
time.sleep_ms(1500)
time.wait(1500 * time.millisecond)
b.measure('code_1')
// your code section 2 ...
time.sleep_ms(500)
time.wait(500 * time.millisecond)
b.measure('code_2')
```