From 127a82ecc950ac73199ded537db5b1161b022855 Mon Sep 17 00:00:00 2001 From: Dave Date: Mon, 30 Nov 2015 13:12:28 -0800 Subject: [PATCH] test-child-process-flush-stdio: indent 2 spaces --- test/parallel/test-child-process-flush-stdio.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/parallel/test-child-process-flush-stdio.js b/test/parallel/test-child-process-flush-stdio.js index b1e18c5cdd6577..5fd7eb3bc99922 100644 --- a/test/parallel/test-child-process-flush-stdio.js +++ b/test/parallel/test-child-process-flush-stdio.js @@ -6,8 +6,8 @@ const assert = require('assert'); const p = cp.spawn('echo'); p.on('close', common.mustCall(function(code, signal) { - assert.strictEqual(code, 0); - assert.strictEqual(signal, null); + assert.strictEqual(code, 0); + assert.strictEqual(signal, null); })); p.stdout.read();