diff --git a/src/js/infragistics.loader.js b/src/js/infragistics.loader.js index 69fedeb8f..f9cade0b6 100644 --- a/src/js/infragistics.loader.js +++ b/src/js/infragistics.loader.js @@ -267,7 +267,7 @@ $.ig.dependencies = [ group: $.ig.loaderClass.locale.dvGroup, dependency: [ { name: "_ig_ext_collections" } ], internal: true, - scripts: [ "$path$/modules/infragistics.ext_collectionsextended.js" ] + scripts: [ "$path$/modules/infragistics.ext_collectionsExtended.js" ] }, { widget: "_ig_ext_text", diff --git a/tests/unit/videoplayer/videoplayer-test.js b/tests/unit/videoplayer/videoplayer-test.js index ff473aa49..8b9396bf4 100644 --- a/tests/unit/videoplayer/videoplayer-test.js +++ b/tests/unit/videoplayer/videoplayer-test.js @@ -1459,7 +1459,7 @@ QUnit.test('Test seeking, ended and duration methods return correct values test video.data('igVideoPlayer').play().then(() => { assert.equal(video.igVideoPlayer("seeking"), false); - assert.equal(video.igVideoPlayer("duration"), 111.745); + assert.equal(video.igVideoPlayer("duration").toFixed(3), 111.745); var ended = video.igVideoPlayer("ended"); assert.notOk(ended);