diff --git a/test/parallel/test-http-response-status-message.js b/test/parallel/test-http-response-status-message.js index 95859634ac394a..14fcb43027a599 100644 --- a/test/parallel/test-http-response-status-message.js +++ b/test/parallel/test-http-response-status-message.js @@ -1,5 +1,5 @@ 'use strict'; -require('../common'); +const common = require('../common'); const assert = require('assert'); const http = require('http'); const net = require('net'); @@ -23,7 +23,7 @@ testCases.findByPath = function(path) { return testCase.path === path; }); if (matching.length === 0) { - throw 'failed to find test case with path ' + path; + common.fail(`failed to find test case with path ${path}`); } return matching[0]; }; diff --git a/test/parallel/test-tls-econnreset.js b/test/parallel/test-tls-econnreset.js index c0df9948f489ea..6bf84a2d0ea726 100644 --- a/test/parallel/test-tls-econnreset.js +++ b/test/parallel/test-tls-econnreset.js @@ -49,8 +49,8 @@ const ca = [ cert, cacert ]; let clientError = null; let connectError = null; -const server = tls.createServer({ ca: ca, cert: cert, key: key }, (conn) => { - throw 'unreachable'; +const server = tls.createServer({ ca: ca, cert: cert, key: key }, () => { + common.fail('should be unreachable'); }).on('tlsClientError', function(err, conn) { assert(!clientError && conn); clientError = err;