diff options
author | Chris Knight <cknight1234@gmail.com> | 2020-03-16 11:40:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-16 12:40:36 +0100 |
commit | 62942749e6982b9aee24c22a5abdbc44b7f0e6b6 (patch) | |
tree | 25b813a005268787326d02c0d975c7daf8162d0e /std/node/module_test.ts | |
parent | 1edb20b399944c6eec1d7c555ab170b6dd276840 (diff) |
test: Fix broken test and remove redundant test file (#4390)
Diffstat (limited to 'std/node/module_test.ts')
-rw-r--r-- | std/node/module_test.ts | 2 |
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)); |