Skip to content

Commit

Permalink
Fix: Rearrange checking & also check second period
Browse files Browse the repository at this point in the history
  • Loading branch information
echoy-harmonicinc committed Aug 20, 2021
1 parent 930c158 commit 51f6c10
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/dash/dash_parser_manifest_unit.js
Expand Up @@ -2251,9 +2251,11 @@ describe('DashParser Manifest', () => {
}

// Expect identical segments
expect(segments[0][0].startTime).toBe(5);
expect(segments[1][0].startTime).toBe(5);
expect(segments[0].length).toBe(2);
expect(segments[1].length).toBe(2);
expect(segments[0][0].startTime).toBe(5);
expect(segments[1][0].startTime).toBe(5);
expect(segments[0][1].startTime).toBe(15);
expect(segments[1][1].startTime).toBe(15);
});
});

0 comments on commit 51f6c10

Please sign in to comment.