diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-07 09:01:36 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-06 23:01:36 +0000 |
commit | a9ed06b8324d4b139aea516d045bdbd091f15be9 (patch) | |
tree | f6bf30f56ed898cff310c34c7cf70a50651de622 /tests/unit/tls_test.ts | |
parent | 5bac4075c38c34ba53ce86e8ce6912d3be38c4bb (diff) |
BREAKING(net): remove `Deno.{Conn,TlsConn,TcpConn,UnixConn}.prototype.rid` (#25446)
Towards #22079
---------
Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
Diffstat (limited to 'tests/unit/tls_test.ts')
-rw-r--r-- | tests/unit/tls_test.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/unit/tls_test.ts b/tests/unit/tls_test.ts index e5b9a02c3..7dcc9abaf 100644 --- a/tests/unit/tls_test.ts +++ b/tests/unit/tls_test.ts @@ -221,7 +221,6 @@ Deno.test( ); const conn = await Deno.connectTls({ hostname, port, caCerts }); - assert(DENO_FUTURE || conn.rid > 0); const w = new BufWriter(conn); const r = new BufReader(conn); const body = `GET / HTTP/1.1\r\nHost: ${hostname}:${port}\r\n\r\n`; @@ -273,7 +272,6 @@ Deno.test( ); const conn = await Deno.connectTls({ hostname, port, caCerts }); - assert(DENO_FUTURE || conn.rid > 0); const w = new BufWriter(conn); const r = new BufReader(conn); const body = `GET / HTTP/1.1\r\nHost: ${hostname}:${port}\r\n\r\n`; |