summaryrefslogtreecommitdiff
path: root/std/node/module_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/node/module_test.ts')
-rw-r--r--std/node/module_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/node/module_test.ts b/std/node/module_test.ts
index 7415f1845..6de5bd66e 100644
--- a/std/node/module_test.ts
+++ b/std/node/module_test.ts
@@ -31,7 +31,7 @@ test(function requireBuiltin() {
assert("readFileSync" in fs);
const { readFileSync, isNull, extname } = require_("./tests/cjs/cjs_builtin");
assertEquals(
- readFileSync("./node/testdata/hello.txt", { encoding: "utf8" }),
+ readFileSync("./node/_fs/testdata/hello.txt", { encoding: "utf8" }),
"hello world"
);
assert(isNull(null));