aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-http-status-reason-invalid-chars.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-status-reason-invalid-chars.js')
-rw-r--r--test/parallel/test-http-status-reason-invalid-chars.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/parallel/test-http-status-reason-invalid-chars.js b/test/parallel/test-http-status-reason-invalid-chars.js
index 245822d014..9950eeeee9 100644
--- a/test/parallel/test-http-status-reason-invalid-chars.js
+++ b/test/parallel/test-http-status-reason-invalid-chars.js
@@ -7,7 +7,7 @@ const net = require('net');
function explicit(req, res) {
assert.throws(() => {
- res.writeHead(200, `OK\r\nContent-Type: text/html\r\n`);
+ res.writeHead(200, 'OK\r\nContent-Type: text/html\r\n');
}, /Invalid character in statusMessage/);
assert.throws(() => {
@@ -20,7 +20,7 @@ function explicit(req, res) {
function implicit(req, res) {
assert.throws(() => {
- res.statusMessage = `OK\r\nContent-Type: text/html\r\n`;
+ res.statusMessage = 'OK\r\nContent-Type: text/html\r\n';
res.writeHead(200);
}, /Invalid character in statusMessage/);
res.statusMessage = 'OK';
@@ -40,8 +40,8 @@ const server = http.createServer((req, res) => {
let left = 2;
const check = common.mustCall((res) => {
left--;
- assert.notEqual(res.headers['content-type'], 'text/html');
- assert.notEqual(res.headers['content-type'], 'gotcha');
+ assert.notStrictEqual(res.headers['content-type'], 'text/html');
+ assert.notStrictEqual(res.headers['content-type'], 'gotcha');
if (left === 0) server.close();
}, 2);
http.get(`${url}/explicit`, check).end();