From fa3c598f989bbf561352aa098fbe5ba5385b8b4f Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Fri, 15 Apr 2016 16:44:29 -0400 Subject: [PATCH] Fix double-quote lint warnings (#329) Signed-off-by: Juan Cruz Viotti --- tests/browser/components/svg-icon.spec.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/browser/components/svg-icon.spec.js b/tests/browser/components/svg-icon.spec.js index 1d016451..2b89131f 100644 --- a/tests/browser/components/svg-icon.spec.js +++ b/tests/browser/components/svg-icon.spec.js @@ -32,7 +32,7 @@ describe('Browser: SVGIcon', function() { })); it('should inline the svg contents in the element', function() { - const icon = "../../../../../assets/images/etcher.svg"; + const icon = '../../../../../assets/images/etcher.svg'; let iconContents = fs.readFileSync(path.join(__dirname, '../../../assets/images/etcher.svg'), { encoding: 'utf8' }).split('\n'); @@ -48,7 +48,7 @@ describe('Browser: SVGIcon', function() { }); it('should default the size to 40x40 pixels', function() { - const icon = "../../../../../assets/images/etcher.svg"; + const icon = '../../../../../assets/images/etcher.svg'; const element = $compile(`Resin.io`)($rootScope); $rootScope.$digest(); m.chai.expect(element.css('width')).to.equal('40px'); @@ -56,7 +56,7 @@ describe('Browser: SVGIcon', function() { }); it('should be able to set a custom height', function() { - const icon = "../../../../../assets/images/etcher.svg"; + const icon = '../../../../../assets/images/etcher.svg'; const element = $compile(`Resin.io`)($rootScope); $rootScope.$digest(); m.chai.expect(element.css('width')).to.equal('20px'); @@ -64,7 +64,7 @@ describe('Browser: SVGIcon', function() { }); it('should be able to set a custom height', function() { - const icon = "../../../../../assets/images/etcher.svg"; + const icon = '../../../../../assets/images/etcher.svg'; const element = $compile(`Resin.io`)($rootScope); $rootScope.$digest(); m.chai.expect(element.css('width')).to.equal('40px');