Skip to content

Commit

Permalink
Merge pull request #2147 from squarebracket/development
Browse files Browse the repository at this point in the history
fix typo in unit test
  • Loading branch information
epiclabsDASH authored Aug 31, 2017
2 parents 77835be + 6032b16 commit 3fb6e22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/streaming.controllers.XLinkController.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import DashParser from '../../src/dash/parser/DashParser';
import URLUtils from '../../src/streaming/utils/URLUtils';
import XLinkController from '../../src/streaming/controllers/XLinkController';
import XlinkController from '../../src/streaming/controllers/XlinkController';
import Events from '../../src/core/events/Events';
import EventBus from '../../src/core/EventBus';

Expand All @@ -14,7 +14,7 @@ const expect = chai.expect;
const context = {};
const eventBus = EventBus(context).getInstance();

describe('XLinkController', function () {
describe('XlinkController', function () {
let xLinkController;
let errorHandlerMock = new ErrorHandlerMock();

Expand Down Expand Up @@ -59,7 +59,7 @@ describe('XLinkController', function () {
});

beforeEach(function () {
xLinkController = XLinkController(context).create({});
xLinkController = XlinkController(context).create({});
});

afterEach(function () {
Expand Down

0 comments on commit 3fb6e22

Please sign in to comment.