diff options
Diffstat (limited to 'js/os_test.ts')
-rw-r--r-- | js/os_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/os_test.ts b/js/os_test.ts index 163a84376..3c1d926d8 100644 --- a/js/os_test.ts +++ b/js/os_test.ts @@ -206,8 +206,8 @@ testPerm({ write: false }, function mkdDirSyncPerm() { testPerm({ write: true }, function renameSync() { const testDir = deno.makeTempDirSync() + "/test-rename"; - const oldpath = testDir + "/oldpath" - const newpath = testDir + "/newpath" + const oldpath = testDir + "/oldpath"; + const newpath = testDir + "/newpath"; deno.mkdirSync(oldpath); deno.renameSync(oldpath, newpath); const newPathInfo = deno.statSync(newpath); |