diff options
Diffstat (limited to 'std/fs/empty_dir_test.ts')
-rw-r--r-- | std/fs/empty_dir_test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/std/fs/empty_dir_test.ts b/std/fs/empty_dir_test.ts index 55fdb52dc..1c1e6f34d 100644 --- a/std/fs/empty_dir_test.ts +++ b/std/fs/empty_dir_test.ts @@ -217,12 +217,13 @@ test(async function emptyDirPermission(): Promise<void> { args.push( path.join(testdataDir, s.async ? "empty_dir.ts" : "empty_dir_sync.ts") ); + args.push("--"); args.push("testfolder"); const { stdout } = Deno.run({ stdout: "piped", cwd: testdataDir, - args: args + args }); const output = await Deno.readAll(stdout); |