From 5eac3a06042e5d5db6ce4450f323152d2dd11f16 Mon Sep 17 00:00:00 2001 From: Craig Taub Date: Fri, 3 Feb 2017 15:24:37 +0000 Subject: [PATCH] remove mistaken arrow functions --- test/reporters/progress.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/reporters/progress.spec.js b/test/reporters/progress.spec.js index 007c40f680..83a78b2b1d 100644 --- a/test/reporters/progress.spec.js +++ b/test/reporters/progress.spec.js @@ -40,7 +40,7 @@ describe('Progress reporter', function () { }); describe('on test end', function () { - describe('if line has not changed', () => { + describe('if line has not changed', function () { it('should return and not write anything', function () { var cachedCursor = Base.cursor; var useColors = Base.useColors; @@ -68,7 +68,7 @@ describe('Progress reporter', function () { Base.window.width = windowWidth; }); }); - describe('if line has changed', () => { + describe('if line has changed', function () { it('should write expected progress of open and close options', function () { var calledCursorCR = false; var cachedCursor = Base.cursor;