From 06cae45ed97f7c8c809154e8f495f793e4e716ef Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Tue, 9 Aug 2016 22:29:48 -0500 Subject: [PATCH] lint: Correct missing semicolons --- test/common/libs/shops.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/common/libs/shops.js b/test/common/libs/shops.js index bea676b588..47f26eb542 100644 --- a/test/common/libs/shops.js +++ b/test/common/libs/shops.js @@ -14,7 +14,7 @@ describe('shops', () => { }); it('does not duplicate identifiers', () => { - let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier))) + let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier))); expect(identifiers.length).to.eql(shopCategories.length); }); @@ -44,7 +44,7 @@ describe('shops', () => { }); it('does not duplicate identifiers', () => { - let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier))) + let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier))); expect(identifiers.length).to.eql(shopCategories.length); }); @@ -68,7 +68,7 @@ describe('shops', () => { }); it('does not duplicate identifiers', () => { - let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier))) + let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier))); expect(identifiers.length).to.eql(shopCategories.length); }); @@ -92,7 +92,7 @@ describe('shops', () => { }); it('does not duplicate identifiers', () => { - let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier))) + let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier))); expect(identifiers.length).to.eql(shopCategories.length); });