Skip to content

Commit 6f353af

Browse files
committed
get rid of arrow function
1 parent 3cd8d2d commit 6f353af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ describe('Parser', function() {
7171
});
7272

7373
it('should throw error for unrecognized', function(done) {
74-
Parser.parseFile(__dirname + '/input/unrecognized.rss', (err, parsed) => {
74+
Parser.parseFile(__dirname + '/input/unrecognized.rss', function(err, parsed) {
7575
Expect(err.message).to.contain('Feed not recognized as RSS');
7676
done();
7777
})

0 commit comments

Comments
 (0)