From 6ddd2ed9ff2e73754de28dc5a8ca4c4af5ca05e1 Mon Sep 17 00:00:00 2001 From: Simon Howe Date: Tue, 15 Dec 2015 16:14:28 +0100 Subject: [PATCH] Fixes linting violations --- client/app/scripts/utils/__tests__/web-api-utils-test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/app/scripts/utils/__tests__/web-api-utils-test.js b/client/app/scripts/utils/__tests__/web-api-utils-test.js index e6407d0cf..d0820085b 100644 --- a/client/app/scripts/utils/__tests__/web-api-utils-test.js +++ b/client/app/scripts/utils/__tests__/web-api-utils-test.js @@ -7,19 +7,19 @@ describe('WebApiUtils', function() { const basePath = WebApiUtils.basePath; it('should handle /scope/terminal.html', function() { - expect(basePath("/scope/terminal.html")).toBe("/scope"); + expect(basePath('/scope/terminal.html')).toBe('/scope'); }); it('should handle /scope/', function() { - expect(basePath("/scope/")).toBe("/scope"); + expect(basePath('/scope/')).toBe('/scope'); }); it('should handle /scope', function() { - expect(basePath("/scope")).toBe("/scope"); + expect(basePath('/scope')).toBe('/scope'); }); it('should handle /', function() { - expect(basePath("/")).toBe(""); + expect(basePath('/')).toBe(''); }); }); });