Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
scriptorian committed Nov 12, 2022
1 parent 87a6722 commit 2bd1fe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/introspectionSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ test('Muxer information', t => {

test('Custom Logging', async t => {
let n = 0;
const cb = (msg) => {
const cb = () => {
n++;
};
beamcoder.setLoggingCallback(cb);

let dm = await beamcoder.demuxer('https://www.elecard.com/storage/video/bbb_1080p_c.ts');
await beamcoder.demuxer('https://www.elecard.com/storage/video/bbb_1080p_c.ts');
// Expected logs are :
// [hevc @ 0x7f1978017180] Unknown HEVC profile: 0
// [hevc @ 0x7f1978017180] Unknown HEVC profile: 0
Expand Down

0 comments on commit 2bd1fe2

Please sign in to comment.