We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0681b7 commit 3d19a04Copy full SHA for 3d19a04
test/parallel/test-http-client-upload-buf.js
@@ -27,8 +27,7 @@ const http = require('http');
27
const N = 1024;
28
29
const server = http.createServer(common.mustCall(function(req, res) {
30
- assert.strictEqual('POST', req.method);
31
-
+ assert.strictEqual(req.method, 'POST');
32
let bytesReceived = 0;
33
34
req.on('data', function(chunk) {
0 commit comments