We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d85161c commit 737f897Copy full SHA for 737f897
test/parallel/test-http-blank-header.js
@@ -26,8 +26,8 @@ const http = require('http');
26
const net = require('net');
27
28
const server = http.createServer(common.mustCall((req, res) => {
29
- assert.strictEqual('GET', req.method);
30
- assert.strictEqual('/blah', req.url);
+ assert.strictEqual(req.method, 'GET');
+ assert.strictEqual(req.url, '/blah');
31
assert.deepStrictEqual({
32
host: 'example.org:443',
33
origin: 'http://example.org',
0 commit comments