summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorgrimrose <grimrose@users.noreply.github.com>2018-11-24 16:42:34 +0900
committerGireesh Punathil <gpunathi@in.ibm.com>2018-11-28 19:29:39 +0530
commit60743638cc0c5b70bc2fc998ab4d0e13c59a26f7 (patch)
tree8cc1aa905871e5a8739aa80fc83e00307a16835b /test
parentb8bd4b454fc0d8c574d24dc4fd6772da873574e4 (diff)
downloadandroid-node-v8-60743638cc0c5b70bc2fc998ab4d0e13c59a26f7.tar.gz
android-node-v8-60743638cc0c5b70bc2fc998ab4d0e13c59a26f7.tar.bz2
android-node-v8-60743638cc0c5b70bc2fc998ab4d0e13c59a26f7.zip
test: fix arguments order in assert.strictEqual
PR-URL: https://github.com/nodejs/node/pull/24608 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Masashi Hirano <shisama07@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/parallel/test-http-pause.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-http-pause.js b/test/parallel/test-http-pause.js
index e2f462582f..0294cf5625 100644
--- a/test/parallel/test-http-pause.js
+++ b/test/parallel/test-http-pause.js
@@ -71,6 +71,6 @@ server.listen(0, function() {
});
process.on('exit', () => {
- assert.strictEqual(expectedServer, resultServer);
- assert.strictEqual(expectedClient, resultClient);
+ assert.strictEqual(resultServer, expectedServer);
+ assert.strictEqual(resultClient, expectedClient);
});