From 582749e338de8b125a3ff798cdd224e579e7814e Mon Sep 17 00:00:00 2001 From: dpaulino Date: Fri, 6 Oct 2017 10:38:27 -0700 Subject: [PATCH] test: removed string from assert message arg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/15954 Reviewed-By: Colin Ihrig Reviewed-By: Ruben Bridgewater Reviewed-By: Tobias Nießen --- test/parallel/test-zlib-from-gzip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-zlib-from-gzip.js b/test/parallel/test-zlib-from-gzip.js index 7ded110056..f62dd10f32 100644 --- a/test/parallel/test-zlib-from-gzip.js +++ b/test/parallel/test-zlib-from-gzip.js @@ -45,7 +45,7 @@ const out = fs.createWriteStream(outputFile); inp.pipe(gunzip).pipe(out); out.on('close', common.mustCall(() => { const actual = fs.readFileSync(outputFile); - assert.strictEqual(actual.length, expect.length, 'length should match'); + assert.strictEqual(actual.length, expect.length); for (let i = 0, l = actual.length; i < l; i++) { assert.strictEqual(actual[i], expect[i], `byte[${i}]`); }