From 298e32aadae970a56b8d5679417bc0a7b92c0053 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Ram=C3=ADrez=20Norambuena?= Date: Tue, 18 Apr 2017 22:38:29 -0300 Subject: [PATCH] Fix Grunt error 124:38 error Strings must use doublequote quotes --- tests/e2e/modules/clock_spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/modules/clock_spec.js b/tests/e2e/modules/clock_spec.js index 948b1c31..6f776f12 100644 --- a/tests/e2e/modules/clock_spec.js +++ b/tests/e2e/modules/clock_spec.js @@ -121,7 +121,7 @@ describe("Clock module", function () { }); it("shows week with correct number of week of year", function() { - const currentWeekNumber = require('current-week-number')(); + const currentWeekNumber = require("current-week-number")(); const weekToShow = "Week " + currentWeekNumber; return app.client.waitUntilWindowLoaded() .getText(".clock .week").should.eventually.equal(weekToShow);