diff options
Diffstat (limited to 'cli/js/read_dir_test.ts')
-rw-r--r-- | cli/js/read_dir_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/read_dir_test.ts b/cli/js/read_dir_test.ts index 3e11df9fe..f75aca996 100644 --- a/cli/js/read_dir_test.ts +++ b/cli/js/read_dir_test.ts @@ -43,7 +43,7 @@ testPerm({ read: true }, function readDirSyncNotDir(): void { let src; try { - src = Deno.readDirSync("package.json"); + src = Deno.readDirSync("cli/tests/fixture.json"); } catch (err) { caughtError = true; assertEquals(err.kind, Deno.ErrorKind.Other); |