Skip to content

Commit

Permalink
fixup test
Browse files Browse the repository at this point in the history
  • Loading branch information
gkatsev authored Mar 2, 2022
1 parent 56d21ad commit 7eb3eb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/videojs-http-streaming.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ QUnit.test('logs deprecation notice when using hls for options', function(assert
assert.equal(this.env.log.warn.calls, 1, 'warning logged');
assert.equal(
this.env.log.warn.args[0][0],
'Using hls options is deprecated. Use vhs instead.'
'Using hls options is deprecated. Please rename `hls` to `vhs` in your options object.'
);
});

Expand All @@ -440,7 +440,7 @@ QUnit.test('logs deprecation notice when using hls for global options', function
assert.equal(this.env.log.warn.calls, 1, 'warning logged');
assert.equal(
this.env.log.warn.args[0][0],
'Using hls options is deprecated. Use vhs instead.'
'Using hls options is deprecated. Please rename `hls` to `vhs` in your options object.'
);

videojs.options.hls = origHlsOptions;
Expand Down

0 comments on commit 7eb3eb8

Please sign in to comment.