diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-01-24 03:35:23 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-23 17:35:23 +0100 |
commit | 18a235e6088a43411bbeca79bae8bcc646f72104 (patch) | |
tree | 10443315b7dd69fdeb7b2d6e962bc05a5f5818ff /cli/tests/testdata/run/tls_starttls.js | |
parent | b0febea47f9a9aba70adbbe089e11cb6f1a69145 (diff) |
refactor: set removal version for `Deno.ListenTlsOptions.certFile`, `Deno.ListenTlsOptions.keyFile` and `Deno.ConnectTlsOptions.certFile` (#22026)
This change:
1. Sets the removal version for `Deno.ListenTlsOptions.certFile`,
`Deno.ListenTlsOptions.keyFile` and `Deno.ConnectTlsOptions.certFile`
for Deno v2, in favour of the `cert`, `key` and `caCerts` options,
respectively.
2. Replaces use of the deprecated options with the new recommended
options.
Towards #22021
Diffstat (limited to 'cli/tests/testdata/run/tls_starttls.js')
-rw-r--r-- | cli/tests/testdata/run/tls_starttls.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/testdata/run/tls_starttls.js b/cli/tests/testdata/run/tls_starttls.js index 3d84ac74a..3e406ff5f 100644 --- a/cli/tests/testdata/run/tls_starttls.js +++ b/cli/tests/testdata/run/tls_starttls.js @@ -13,8 +13,8 @@ const port = 3504; const listener = Deno.listenTls({ hostname, port, - certFile: "./tls/localhost.crt", - keyFile: "./tls/localhost.key", + cert: Deno.readTextFileSync("./tls/localhost.crt"), + key: Deno.readTextFileSync("./tls/localhost.key"), }); const response = encoder.encode( |