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 0f8709c commit 524222eCopy full SHA for 524222e
test/parallel/test-pipe-file-to-http.js
@@ -34,7 +34,7 @@ let count = 0;
34
35
const server = http.createServer(function(req, res) {
36
let timeoutId;
37
- assert.strictEqual('POST', req.method);
+ assert.strictEqual(req.method, 'POST');
38
req.pause();
39
40
setTimeout(function() {
@@ -82,5 +82,5 @@ function makeRequest() {
82
}
83
84
process.on('exit', function() {
85
- assert.strictEqual(1024 * 10240, count);
+ assert.strictEqual(count, 1024 * 10240);
86
});
0 commit comments