Skip to content

Commit

Permalink
chore: Fix bad cherry-picks
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyparrish committed Dec 12, 2024
1 parent 05d8072 commit b4cc3db
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test/util/stream_utils_unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -1062,8 +1062,7 @@ describe('StreamUtils', () => {
shaka.util.StreamUtils.chooseCodecsAndFilterManifest(manifest,
/* preferredVideoCodecs= */[],
/* preferredAudioCodecs= */[],
/* preferredDecodingAttributes= */[],
/* preferredTextFormats= */ []);
/* preferredDecodingAttributes= */[]);
expect(manifest.variants.length).toBe(1);
expect(manifest.variants[0].video.codecs).toBe('dav1.10.01');
});
Expand Down Expand Up @@ -1101,8 +1100,7 @@ describe('StreamUtils', () => {
shaka.util.StreamUtils.chooseCodecsAndFilterManifest(manifest,
/* preferredVideoCodecs= */[],
/* preferredAudioCodecs= */[],
/* preferredDecodingAttributes= */[],
/* preferredTextFormats= */ []);
/* preferredDecodingAttributes= */[]);
expect(manifest.variants.length).toBe(1);
expect(manifest.variants[0].video.codecs).toBe('dvh1.05.06');
});
Expand Down

0 comments on commit b4cc3db

Please sign in to comment.