95f3c361 by Alex Rubin

Fixed lint errors

1 parent 050e0699
...@@ -1121,7 +1121,7 @@ asyncTest('handles xhr timeouts correctly', function (assert) { ...@@ -1121,7 +1121,7 @@ asyncTest('handles xhr timeouts correctly', function (assert) {
1121 videojs.Hls.xhr({ 1121 videojs.Hls.xhr({
1122 url: 'http://google.com:81', 1122 url: 'http://google.com:81',
1123 timeout: 1 1123 timeout: 1
1124 }, function(error, url) { 1124 }, function(error) {
1125 assert.strictEqual(error, 'timeout', 'called with timeout error'); 1125 assert.strictEqual(error, 'timeout', 'called with timeout error');
1126 clearTimeout(testTimeout); 1126 clearTimeout(testTimeout);
1127 start(); 1127 start();
......