From 402cd46c35280d4bce624e202032f149e7be79cc Mon Sep 17 00:00:00 2001
From: Manish Poddar <manish.poddar@epoch.com>
Date: Tue, 6 Nov 2018 15:40:01 +0000
Subject: [PATCH] test: fix assert argument order

---
 test/parallel/test-child-process-stdio.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/parallel/test-child-process-stdio.js b/test/parallel/test-child-process-stdio.js
index 5ca3875f5600f6..a5e5f952259cee 100644
--- a/test/parallel/test-child-process-stdio.js
+++ b/test/parallel/test-child-process-stdio.js
@@ -60,8 +60,8 @@ const { spawn } = require('child_process');
   }));
 
   child.on('close', common.mustCall(function() {
-    assert.strictEqual(true, output.length > 1);
-    assert.strictEqual('\n', output[output.length - 1]);
+    assert.strictEqual(output.length > 1, true);
+    assert.strictEqual(output[output.length - 1], '\n');
   }));
 }