From 213cafa20d376230f339e7ba5a4d77b82507a9c6 Mon Sep 17 00:00:00 2001 From: tottokotkd Date: Sat, 24 Nov 2018 16:41:07 +0900 Subject: [PATCH] test: fix the arguments order in `assert.strictEqual` --- test/parallel/test-http-default-encoding.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-http-default-encoding.js b/test/parallel/test-http-default-encoding.js index 36d3f0a65244fe..8fcbf1a07f26ff 100644 --- a/test/parallel/test-http-default-encoding.js +++ b/test/parallel/test-http-default-encoding.js @@ -54,5 +54,5 @@ server.listen(0, function() { }); process.on('exit', () => { - assert.strictEqual(expected, result); + assert.strictEqual(result, expected); });