diff options
author | Ry Dahl <ry@tinyclouds.org> | 2020-01-07 14:14:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-07 14:14:33 -0500 |
commit | d4bf0670ce02a7561f224085bef6827132335cd5 (patch) | |
tree | b9b102775fc31e9c867ce4810efc63a9f9518748 /std/fs/walk_test.ts | |
parent | ad9fd589d4131e847721323a730ba91161f1b95b (diff) |
fix: Deno.mkdir should conform to style guide (#3617)
Diffstat (limited to 'std/fs/walk_test.ts')
-rw-r--r-- | std/fs/walk_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/fs/walk_test.ts b/std/fs/walk_test.ts index c0884175f..8f218eca6 100644 --- a/std/fs/walk_test.ts +++ b/std/fs/walk_test.ts @@ -105,7 +105,7 @@ testWalk( testWalk( async (d: string): Promise<void> => { - await mkdir(d + "/a/b/c/d", true); + await mkdir(d + "/a/b/c/d", { recursive: true }); await touch(d + "/a/b/c/d/x"); }, async function depth(): Promise<void> { |