From aa4ac9fa0527c315c88d4143d201136e1c9ddc1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Wed, 9 Dec 2015 13:38:53 +0100 Subject: [PATCH] fix(timerange): fixed broken unit tests --- public/test/core/utils/rangeutil_specs.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/test/core/utils/rangeutil_specs.ts b/public/test/core/utils/rangeutil_specs.ts index 32286764c20..5bc3b9911f4 100644 --- a/public/test/core/utils/rangeutil_specs.ts +++ b/public/test/core/utils/rangeutil_specs.ts @@ -41,12 +41,12 @@ describe("rangeUtil", () => { it('should handle now/d', () => { var info = rangeUtil.describeTextRange('now/d'); - expect(info.display).to.be('The day so far'); + expect(info.display).to.be('Today so far'); }); it('should handle now/w', () => { var info = rangeUtil.describeTextRange('now/w'); - expect(info.display).to.be('Week to date'); + expect(info.display).to.be('Week so far'); }); });