test: update http-header-obstext
PR-URL: https://github.com/nodejs/node/pull/9415 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
This commit is contained in:
parent
3e6cc607b0
commit
a99b441c2c
@ -1,6 +1,9 @@
|
||||
'use strict';
|
||||
|
||||
const common = require('../common');
|
||||
|
||||
// This test ensures that the http-parser can handle UTF-8 characters
|
||||
// in the http header.
|
||||
|
||||
const http = require('http');
|
||||
const assert = require('assert');
|
||||
|
||||
@ -12,7 +15,7 @@ server.listen(0, () => {
|
||||
port: server.address().port,
|
||||
headers: {'Test': 'Düsseldorf'}
|
||||
}, common.mustCall((res) => {
|
||||
assert.equal(res.statusCode, 200);
|
||||
assert.strictEqual(res.statusCode, 200);
|
||||
server.close();
|
||||
}));
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user