From 6f9f44ea774abc3772639dac1494ecafe171f2c8 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Fri, 28 Aug 2015 12:04:21 -0700 Subject: [PATCH] test: remove semicolon --- test/array.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/array.js b/test/array.js index c2f2f6a..60311b8 100644 --- a/test/array.js +++ b/test/array.js @@ -197,7 +197,7 @@ describe('Array', function () { bindings.arrayAbs(array.buffer, array.length) - assert.deepEqual(array.toJSON(), input.map(Math.abs)); + assert.deepEqual(array.toJSON(), input.map(Math.abs)) }) })