Skip to content

Commit

Permalink
fix: Fix compiler error introduced in #3864 (#3906)
Browse files Browse the repository at this point in the history
  • Loading branch information
Álvaro Velad Galván committed Jan 26, 2022
1 parent f27401c commit 0635e2c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/text/ttml_text_parser_unit.js
Expand Up @@ -1382,7 +1382,8 @@ describe('TtmlTextParser', () => {
'<body><div>' +
'<p begin="00:01.00" end="00:02.00" style="s1">Test</p>' +
'</div></body></tt>',
{periodStart: 0, segmentStart: 0, segmentEnd: 0});
{periodStart: 0, segmentStart: 0, segmentEnd: 0},
{startTime: 1, endTime: 2});
});

it('parses cue alignment from textAlign attribute', () => {
Expand Down

0 comments on commit 0635e2c

Please sign in to comment.