test: improve assert message
Improves the message when an assertion fires in the test-net-pipe-connect-errors so that it indicates the incorrect value received rather than merely reporting that the value is incorrect. PR-URL: https://github.com/nodejs/node/pull/4461 Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
This commit is contained in:
parent
78fd43514f
commit
242d07890f
@ -44,7 +44,8 @@ var notSocketClient = net.createConnection(emptyTxt, function() {
|
||||
});
|
||||
|
||||
notSocketClient.on('error', function(err) {
|
||||
assert(err.code === 'ENOTSOCK' || err.code === 'ECONNREFUSED');
|
||||
assert(err.code === 'ENOTSOCK' || err.code === 'ECONNREFUSED',
|
||||
`received ${err.code} instead of ENOTSOCK or ECONNREFUSED`);
|
||||
notSocketErrorFired = true;
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user