Skip to content

Commit

Permalink
remove mistaken arrow functions
Browse files Browse the repository at this point in the history
  • Loading branch information
craigtaub committed Feb 3, 2017
1 parent 6e52f40 commit 5eac3a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/reporters/progress.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 5eac3a0

Please sign in to comment.