Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2022-04-17 17:37:21 +0300
committerMichaƫl Zasso <targos@protonmail.com>2022-07-31 10:43:49 +0300
commitc36b02f66611e312ead0341e87b7e9e378fb97a2 (patch)
tree409b5c814735ffd0313f4463a42628739b85f8fe /benchmark
parenta3d4579135136f7fda2ec6c5dc6d99f500b6f1ac (diff)
benchmark: fix misc/startup failure
PR-URL: https://github.com/nodejs/node/pull/42746 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/fixtures/require-cachable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/fixtures/require-cachable.js b/benchmark/fixtures/require-cachable.js
index 4afda3cda47..85e3a81f4e9 100644
--- a/benchmark/fixtures/require-cachable.js
+++ b/benchmark/fixtures/require-cachable.js
@@ -6,5 +6,5 @@ const {
} = internalBinding('native_module');
for (const key of canBeRequired) {
- require(key);
+ require(`node:${key}`);
}