summaryrefslogtreecommitdiff
path: root/cli/js/tls_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/tls_test.ts')
-rw-r--r--cli/js/tls_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/tls_test.ts b/cli/js/tls_test.ts
index a60e18507..99900ab57 100644
--- a/cli/js/tls_test.ts
+++ b/cli/js/tls_test.ts
@@ -105,7 +105,7 @@ unitTest(
const testDir = Deno.makeTempDirSync();
const keyFilename = testDir + "/key.pem";
Deno.writeFileSync(keyFilename, new Uint8Array([]), {
- perm: 0o666
+ mode: 0o666
});
try {
@@ -134,7 +134,7 @@ unitTest(
const testDir = Deno.makeTempDirSync();
const certFilename = testDir + "/cert.crt";
Deno.writeFileSync(certFilename, new Uint8Array([]), {
- perm: 0o666
+ mode: 0o666
});
try {