★ wanayoo — archive 1999 https://github.com/nodejs/node/commit/3d19a04b51Nouvelle recherche | Portail wanayoo
Skip to content
Permalink
Browse files
test: fixe argument order in assert.strictEqual
File: test/parallel/test-http-client-upload-buf.js

PR-URL: #24140
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
  • Loading branch information
posth authored and BridgeAR committed Nov 13, 2018
1 parent a0681b7 commit 3d19a04b51bc441e492a3e3daf7dbdb8ff42f375
Showing with 1 addition and 2 deletions.
  1. +1 −2 test/parallel/test-http-client-upload-buf.js
@@ -27,8 +27,7 @@ const http = require('http');
const N = 1024;

const server = http.createServer(common.mustCall(function(req, res) {
assert.strictEqual('POST', req.method);

assert.strictEqual(req.method, 'POST');
let bytesReceived = 0;

req.on('data', function(chunk) {

0 comments on commit 3d19a04

Please sign in to comment.