summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJulian Correa <julian.alexis.correa@gmail.com>2019-06-21 16:31:12 -0500
committerMichaƫl Zasso <targos@protonmail.com>2019-07-20 11:05:16 +0200
commit49c533964f0feda7f89d5cdad0103b9de4a71b4f (patch)
treeba8b65b6274c24f991af38dcf647b6ca9ca66c5a /test
parentcbf540136f07f1fb9c8101924b11db52fb6f0204 (diff)
downloadandroid-node-v8-49c533964f0feda7f89d5cdad0103b9de4a71b4f.tar.gz
android-node-v8-49c533964f0feda7f89d5cdad0103b9de4a71b4f.tar.bz2
android-node-v8-49c533964f0feda7f89d5cdad0103b9de4a71b4f.zip
test: fix assertion argument order in test-https-agent.js
PR-URL: https://github.com/nodejs/node/pull/28383 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/parallel/test-https-agent.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-https-agent.js b/test/parallel/test-https-agent.js
index 835b85e004..4b2f9e73a1 100644
--- a/test/parallel/test-https-agent.js
+++ b/test/parallel/test-https-agent.js
@@ -68,5 +68,5 @@ server.listen(0, function() {
process.on('exit', function() {
- assert.strictEqual(N * M, responses);
+ assert.strictEqual(responses, N * M);
});