Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

net: throw error to object mode in Socket #40344

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/parallel/test-net-connect-options-invalid.js
@@ -1,5 +1,5 @@
'use strict';
const common = require('../common');
require('../common');
const assert = require('assert');
const net = require('net');

Expand All @@ -11,7 +11,7 @@ const net = require('net');
];
invalidKeys.forEach((invalidKey) => {
const option = {
...common.localhostIPv4,
port: 8080,
[invalidKey]: true
};
const message = `The property 'options.${invalidKey}' is not supported. Received true`;
Expand Down
3 changes: 1 addition & 2 deletions test/parallel/test-socket-options-invalid.js
@@ -1,5 +1,5 @@
'use strict';
const common = require('../common');
watilde marked this conversation as resolved.
Show resolved Hide resolved
require('../common');
const assert = require('assert');
const net = require('net');

Expand All @@ -11,7 +11,6 @@ const net = require('net');
];
invalidKeys.forEach((invalidKey) => {
const option = {
...common.localhostIPv4,
[invalidKey]: true
};
const message = `The property 'options.${invalidKey}' is not supported. Received true`;
Expand Down