1
0
mirror of https://github.com/videojs/video.js.git synced 2024-11-28 08:58:46 +02:00

Fixed test to use exported property

This commit is contained in:
Steve Heffernan 2014-07-28 16:48:24 -07:00
parent 0ce57ae149
commit 0bc7ca0954

View File

@ -92,7 +92,7 @@ test('currentTime is the seek target during seeking', function() {
currentTime = 3;
strictEqual(3, tech.currentTime(), 'currentTime is retreived from the SWF');
tech.setCurrentTime(7);
tech['setCurrentTime'](7);
seeking = true;
strictEqual(7, tech.currentTime(), 'during seeks the target time is returned');
});