Skip to content

Commit

Permalink
use const word instead of let
Browse files Browse the repository at this point in the history
  • Loading branch information
nicosang committed Sep 1, 2017
1 parent 1844838 commit dbdb9e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/dash.DashParser.js
Expand Up @@ -29,7 +29,7 @@ describe('DashParser', function () {
});

it('should throw an error when parse is called without data and config object has been set properly', function () {
let errorHandlerMock = new ErrorHandlerMock();
const errorHandlerMock = new ErrorHandlerMock();
dashParser = DashParser(context).create({errorHandler: errorHandlerMock});
dashParser.parse();
expect(errorHandlerMock.error).to.equal('parsing the manifest failed');
Expand Down

0 comments on commit dbdb9e3

Please sign in to comment.