Skip to content

Commit 0c0c5c9

Browse files
Álvaro Velad Galvánjoeyparrish
authored andcommitted
fix: Fix compiler error introduced in #3864 (#3906)
1 parent 8b1ae42 commit 0c0c5c9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/text/ttml_text_parser_unit.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1382,7 +1382,8 @@ describe('TtmlTextParser', () => {
13821382
'<body><div>' +
13831383
'<p begin="00:01.00" end="00:02.00" style="s1">Test</p>' +
13841384
'</div></body></tt>',
1385-
{periodStart: 0, segmentStart: 0, segmentEnd: 0});
1385+
{periodStart: 0, segmentStart: 0, segmentEnd: 0},
1386+
{startTime: 1, endTime: 2});
13861387
});
13871388

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

0 commit comments

Comments
 (0)