diff options
Diffstat (limited to 'js/performance_test.ts')
-rw-r--r-- | js/performance_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/performance_test.ts b/js/performance_test.ts index 1238a3836..ac682364e 100644 --- a/js/performance_test.ts +++ b/js/performance_test.ts @@ -1,7 +1,7 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import { testPerm, assert } from "./test_util.ts"; -testPerm({ highPrecision: false }, function now(): void { +testPerm({ hrtime: false }, function now(): void { const start = performance.now(); setTimeout((): void => { const end = performance.now(); |