mirror of https://github.com/lukechilds/node.git
Browse Source
Use common.expectsError() instead of rolling own validation function in test-http-request-invalid-method-error.js. common.expectsError() didn't exist when the test was written, but now it does. PR-URL: https://github.com/nodejs/node/pull/11408 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>v7.x
Rich Trott
8 years ago
committed by
Italo A. Casas
1 changed files with 2 additions and 5 deletions
@ -1,12 +1,9 @@ |
|||
'use strict'; |
|||
require('../common'); |
|||
const common = require('../common'); |
|||
const assert = require('assert'); |
|||
const http = require('http'); |
|||
|
|||
assert.throws( |
|||
() => { http.request({method: '\0'}); }, |
|||
(error) => { |
|||
return (error instanceof TypeError) && |
|||
/Method must be a valid HTTP token/.test(error); |
|||
} |
|||
common.expectsError(undefined, TypeError, 'Method must be a valid HTTP token') |
|||
); |
|||
|
Loading…
Reference in new issue