summaryrefslogtreecommitdiff
path: root/cli/tests/unit/symlink_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit/symlink_test.ts')
-rw-r--r--cli/tests/unit/symlink_test.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tests/unit/symlink_test.ts b/cli/tests/unit/symlink_test.ts
index b9fcd9e7a..b5700b4f3 100644
--- a/cli/tests/unit/symlink_test.ts
+++ b/cli/tests/unit/symlink_test.ts
@@ -7,7 +7,7 @@ import {
} from "./test_util.ts";
unitTest(
- { perms: { read: true, write: true } },
+ { permissions: { read: true, write: true } },
function symlinkSyncSuccess() {
const testDir = Deno.makeTempDirSync();
const oldname = testDir + "/oldname";
@@ -22,7 +22,7 @@ unitTest(
);
unitTest(
- { perms: { read: true, write: true } },
+ { permissions: { read: true, write: true } },
function symlinkSyncURL() {
const testDir = Deno.makeTempDirSync();
const oldname = testDir + "/oldname";
@@ -46,7 +46,7 @@ unitTest(function symlinkSyncPerm() {
});
unitTest(
- { perms: { read: true, write: true } },
+ { permissions: { read: true, write: true } },
async function symlinkSuccess() {
const testDir = Deno.makeTempDirSync();
const oldname = testDir + "/oldname";
@@ -61,7 +61,7 @@ unitTest(
);
unitTest(
- { perms: { read: true, write: true } },
+ { permissions: { read: true, write: true } },
async function symlinkURL() {
const testDir = Deno.makeTempDirSync();
const oldname = testDir + "/oldname";