summaryrefslogtreecommitdiff
path: root/tests/testdata/bench
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-04-11 07:26:35 +1000
committerGitHub <noreply@github.com>2024-04-10 17:26:35 -0400
commitc6f1107e9c8835389479f4f2d80d3539d23df41e (patch)
tree4fdf2e9c02d23364cae0aab9021d1655274d1d5c /tests/testdata/bench
parent7c5745a204637f12e53e62821c6e7e91fee21fbe (diff)
chore: update references to `deno_std` to use JSR (#23239)
There are more uses of `deno.land/std` in the codebase, but for URL parsing purposes rather than network calls or documentation.
Diffstat (limited to 'tests/testdata/bench')
-rw-r--r--tests/testdata/bench/multiple_group.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/testdata/bench/multiple_group.ts b/tests/testdata/bench/multiple_group.ts
index 69e73a7f2..165b5e201 100644
--- a/tests/testdata/bench/multiple_group.ts
+++ b/tests/testdata/bench/multiple_group.ts
@@ -4,12 +4,12 @@ Deno.bench("noop2", { group: "noop", baseline: true }, () => {});
Deno.bench("noop3", { group: "url" }, () => {});
Deno.bench("parse url 2x", { group: "url", baseline: true }, () => {
- new URL("https://deno.land/std/http/server.ts");
- new URL("https://deno.land/std/http/server.ts");
+ new URL("https://jsr.io/@std/http/0.221.0/file_server.ts");
+ new URL("https://jsr.io/@std/http/0.221.0/file_server.ts");
});
Deno.bench("parse url 200x", { group: "url" }, () => {
for (let i = 0; i < 200; i++) {
- new URL("https://deno.land/std/http/server.ts");
+ new URL("https://jsr.io/@std/http/0.221.0/file_server.ts");
}
});