From eb63837b8328359cd2f70e962b4c9f5f577d8a01 Mon Sep 17 00:00:00 2001 From: Craig Taub Date: Thu, 2 Feb 2017 18:37:24 +0000 Subject: [PATCH] remove accidental arrow function --- test/reporters/xunit.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/reporters/xunit.spec.js b/test/reporters/xunit.spec.js index 2ba2912932..8b54776784 100644 --- a/test/reporters/xunit.spec.js +++ b/test/reporters/xunit.spec.js @@ -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; @@ -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;