From fc0cceca921b087a9c5e3d7b5ead2278aa914eec Mon Sep 17 00:00:00 2001 From: CJ Patoilo Date: Tue, 22 Nov 2016 19:40:59 -0300 Subject: [PATCH] Fix code style --- backstop.conf.js | 2 +- test/unit/package-spec.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backstop.conf.js b/backstop.conf.js index 6eb0b3e..2352e2d 100644 --- a/backstop.conf.js +++ b/backstop.conf.js @@ -115,4 +115,4 @@ module.exports = { casperFlags: [], debug: false, port: 3002 -} +}; diff --git a/test/unit/package-spec.js b/test/unit/package-spec.js index b98467d..594d90a 100644 --- a/test/unit/package-spec.js +++ b/test/unit/package-spec.js @@ -112,7 +112,7 @@ describe('Package', () => { describe('Ignore', () => { - it(`should be equal`, () => { + it('should be equal', () => { packages.map((referenceValue, referenceIndex) => { packages.map((compareValue, compareIndex) => { if (referenceIndex !== compareIndex) assert(referenceValue.ignore, compareValue.ignore); @@ -124,7 +124,7 @@ describe('Package', () => { describe('Keywords', () => { - it(`should be equal`, () => { + it('should be equal', () => { packages.map((referenceValue, referenceIndex) => { packages.map((compareValue, compareIndex) => { if (referenceIndex !== compareIndex) assert(referenceValue.keywords, compareValue.keywords);