We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0918d3 commit 75da243Copy full SHA for 75da243
test/pytest/test_timer.py
@@ -24,7 +24,7 @@ def test_timer():
24
timer = NumCpp.Timer()
25
timer.tic()
26
timer.sleep(SLEEP_TIME)
27
- elapsedTime = timer.toc(NumCpp.PrintElapsedTime.YES) # microseconds
+ elapsedTime = timer.toc(NumCpp.PrintElapsedTime.NO) # microseconds
28
assert np.abs(elapsedTime.count() - SLEEP_TIME) < 0.1e6
29
30
SLEEP_TIME = int(
@@ -40,5 +40,5 @@ def test_timer():
40
timer = NumCpp.Timer("Python Test Case")
41
42
43
44
0 commit comments