summaryrefslogtreecommitdiff
path: root/ext/url/benches/url_ops.rs
diff options
context:
space:
mode:
authorBartek Iwańczuk <biwanczuk@gmail.com>2023-03-18 15:25:28 -0400
committerGitHub <noreply@github.com>2023-03-18 20:25:28 +0100
commitf6c364fcf6d9eb341d982f7b2084166ca2d25822 (patch)
treeeaaa9eefeca0a68efd09750626082761021d090f /ext/url/benches/url_ops.rs
parent00f4c0df97a7b47495e077a8237142995cb78077 (diff)
Revert "perf(core): use static specifier in ExtensionFileSource (#182… (#18270)
…64)" This reverts commit 8af0c8351935ea7c6c0441055d5164908322c9d6. Causes bench stage to fail on CI.
Diffstat (limited to 'ext/url/benches/url_ops.rs')
-rw-r--r--ext/url/benches/url_ops.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/url/benches/url_ops.rs b/ext/url/benches/url_ops.rs
index 2e5666552..4096a6a92 100644
--- a/ext/url/benches/url_ops.rs
+++ b/ext/url/benches/url_ops.rs
@@ -15,7 +15,7 @@ fn setup() -> Vec<Extension> {
deno_url::deno_url::init_ops_and_esm(),
Extension::builder("bench_setup")
.esm(vec![ExtensionFileSource {
- specifier: "ext:bench_setup/setup",
+ specifier: "ext:setup".to_string(),
code: ExtensionFileSourceCode::IncludedInBinary(
r#"import { URL } from "ext:deno_url/00_url.js";
globalThis.URL = URL;