diff options
author | Casper Beyer <caspervonb@pm.me> | 2020-06-25 19:08:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 07:08:42 -0400 |
commit | ab0f12fcb80d6ad9bb74c9ba427fc73d302831ab (patch) | |
tree | 530d92c151c88daafb387722c92eaf29c73dcf5d | |
parent | d9896d64ce919a46a6e8c6666c3b87cc9ae79b7b (diff) |
Remove stale comment referring to deleted code (#6462)
-rw-r--r-- | cli/tests/unit/symlink_test.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/tests/unit/symlink_test.ts b/cli/tests/unit/symlink_test.ts index de0435014..8949faa0c 100644 --- a/cli/tests/unit/symlink_test.ts +++ b/cli/tests/unit/symlink_test.ts @@ -8,7 +8,6 @@ unitTest( const oldname = testDir + "/oldname"; const newname = testDir + "/newname"; Deno.mkdirSync(oldname); - // Just for now, until we implement symlink for Windows. Deno.symlinkSync(oldname, newname); const newNameInfoLStat = Deno.lstatSync(newname); const newNameInfoStat = Deno.statSync(newname); |