diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2022-01-13 10:25:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-13 16:25:20 +0100 |
commit | 282c235ba1ac2e3a666232e84ed2ff2d40070c6a (patch) | |
tree | 01ac735df2f466c1cf37ea0ac397f79fbbe39650 /cli/bench/deno_common.js | |
parent | 50e8ab8a8630a272e9862f2fb7014107474405c6 (diff) |
chore: rename cli/bench/fixtures to cli/bench/testdata (#13363)
Diffstat (limited to 'cli/bench/deno_common.js')
-rw-r--r-- | cli/bench/deno_common.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/bench/deno_common.js b/cli/bench/deno_common.js index 2d8fa8793..8863261a0 100644 --- a/cli/bench/deno_common.js +++ b/cli/bench/deno_common.js @@ -78,7 +78,7 @@ function benchRead128k() { return benchAsync( "read_128k", 5e4, - () => Deno.readFile("./cli/bench/fixtures/128k.bin"), + () => Deno.readFile("./cli/bench/testdata/128k.bin"), ); } |