diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-01-17 00:32:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-17 00:32:59 +0100 |
commit | b26dcbc69d56b6ac5780520dad47f10460127d3e (patch) | |
tree | 1f0c45b2c39eff83a9fede7a9e6e268a5e04194b /cli/tests/unit/chown_test.ts | |
parent | fc45a19801fe32eaf3a82ab8333f433fcfd7ca4e (diff) |
chore: Enforce ban-untagged-todo lint rule (#9135)
Diffstat (limited to 'cli/tests/unit/chown_test.ts')
-rw-r--r-- | cli/tests/unit/chown_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/unit/chown_test.ts b/cli/tests/unit/chown_test.ts index 8181225e3..2fac679ce 100644 --- a/cli/tests/unit/chown_test.ts +++ b/cli/tests/unit/chown_test.ts @@ -96,7 +96,7 @@ unitTest( unitTest( { perms: { run: true, write: true }, ignore: Deno.build.os == "windows" }, async function chownSyncSucceed(): Promise<void> { - // TODO: when a file's owner is actually being changed, + // TODO(bartlomieju): when a file's owner is actually being changed, // chown only succeeds if run under priviledged user (root) // The test script has no such privilege, so need to find a better way to test this case const { uid, gid } = await getUidAndGid(); @@ -152,7 +152,7 @@ unitTest( unitTest( { perms: { run: true, write: true }, ignore: Deno.build.os == "windows" }, async function chownWithUrl(): Promise<void> { - // TODO: same as chownSyncSucceed + // TODO(bartlomieju): same as chownSyncSucceed const { uid, gid } = await getUidAndGid(); const enc = new TextEncoder(); |