Skip to content

Commit 362b574

Browse files
committed
correct tests after rebase
1 parent 99bcdd0 commit 362b574

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/text/ttml_text_parser_unit.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -848,6 +848,11 @@ describe('TtmlTextParser', () => {
848848
if (cue.region) {
849849
cue.region = jasmine.objectContaining(cue.region);
850850
}
851+
852+
if (cue.nestedCues) {
853+
cue.nestedCues = cue.nestedCues.map(nestedCue => jasmine.objectContaining(nestedCue));
854+
}
855+
851856
return jasmine.objectContaining(cue);
852857
});
853858
expect(result).toEqual(expected);

0 commit comments

Comments
 (0)