Skip to content

Commit

Permalink
remove accidental arrow function
Browse files Browse the repository at this point in the history
  • Loading branch information
craigtaub committed Feb 2, 2017
1 parent a4f6ef4 commit eb63837
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/reporters/xunit.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ describe('XUnit reporter', function () {
});

describe('done', function () {
describe('if fileStream is truthly', () => {
describe('if fileStream is truthly', function () {
it('should run callback with failure inside streams end', function () {
var xunit = new XUnit({on: function () {}});
var callbackArgument = null;
Expand Down Expand Up @@ -214,7 +214,7 @@ describe('XUnit reporter', function () {

describe('test', function () {
describe('on test failure', function () {
it('should write expected tag', function () {
it('should write expected tag with error details', function () {
var xunit = new XUnit({on: function () {}});

var expectedWrite = null;
Expand Down

0 comments on commit eb63837

Please sign in to comment.