summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-upload-buf.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-client-upload-buf.js')
-rw-r--r--test/parallel/test-http-client-upload-buf.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-http-client-upload-buf.js b/test/parallel/test-http-client-upload-buf.js
index 338aab9cc5..208de06e8e 100644
--- a/test/parallel/test-http-client-upload-buf.js
+++ b/test/parallel/test-http-client-upload-buf.js
@@ -6,7 +6,7 @@ const http = require('http');
const N = 1024;
const server = http.createServer(common.mustCall(function(req, res) {
- assert.equal('POST', req.method);
+ assert.strictEqual('POST', req.method);
let bytesReceived = 0;