diff options
author | Bartek Iwańczuk <biwanczuk@gmail.com> | 2024-04-11 21:31:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-11 20:31:11 +0000 |
commit | 5758470ee47063d4a0b65fcba1441dfb8a8ace54 (patch) | |
tree | 1c2a31cd6e79f4a5778ac253dd160cd62ac583f2 /tests/unit/tls_test.ts | |
parent | 4ab0215727be2f2c97e1c7d05b86aa1b93007e3b (diff) |
Revert "refactor(ext/net): extract TLS key and certificate from inter… (#23325)
…faces (#23296)"
This reverts commit e190acbfa8b41f92291e73c405735ba0d7b5b172.
Reverting because it broke stable API type declarations. We will reland
it for v1.43 with updated interfaces
Diffstat (limited to 'tests/unit/tls_test.ts')
-rw-r--r-- | tests/unit/tls_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/tls_test.ts b/tests/unit/tls_test.ts index 5be05b73e..8f0a296c7 100644 --- a/tests/unit/tls_test.ts +++ b/tests/unit/tls_test.ts @@ -1336,7 +1336,7 @@ Deno.test( }); }, TypeError, - "Cannot specify both `key` and `privateKey` for `Deno.connectTls`.", + "Cannot specify both `privateKey` and `key`", ); }, ); |