summaryrefslogtreecommitdiff
path: root/test/parallel/test-tls-disable-renegotiation.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-tls-disable-renegotiation.js')
-rw-r--r--test/parallel/test-tls-disable-renegotiation.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/parallel/test-tls-disable-renegotiation.js b/test/parallel/test-tls-disable-renegotiation.js
index da492713a0..13e08112e5 100644
--- a/test/parallel/test-tls-disable-renegotiation.js
+++ b/test/parallel/test-tls-disable-renegotiation.js
@@ -46,7 +46,6 @@ server.listen(0, common.mustCall(() => {
port
};
const client = tls.connect(options, common.mustCall(() => {
- client.write('');
common.expectsError(() => client.renegotiate(), {
code: 'ERR_INVALID_ARG_TYPE',
@@ -78,7 +77,6 @@ server.listen(0, common.mustCall(() => {
// data event on the server. After that data
// is received, disableRenegotiation is called.
client.write('data', common.mustCall(() => {
- client.write('');
// This second renegotiation attempt should fail
// and the callback should never be invoked. The
// server will simply drop the connection after