summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/subrip_test.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/subrip_test.cc b/test/subrip_test.cc
index de102369f..19caca592 100644
--- a/test/subrip_test.cc
+++ b/test/subrip_test.cc
@@ -190,7 +190,11 @@ BOOST_AUTO_TEST_CASE (subrip_render_test)
BOOST_CHECK_EQUAL (content->full_length(), DCPTime::from_seconds ((3 * 60) + 56.471));
shared_ptr<SubRipDecoder> decoder (new SubRipDecoder (content));
- list<shared_ptr<ContentTextSubtitle> > cts = decoder->get_text_subtitles (ContentTime::from_seconds (109), ContentTime::from_seconds (110));
+ list<shared_ptr<ContentTextSubtitle> > cts = decoder->get_text_subtitles (
+ ContentTimePeriod (
+ ContentTime::from_seconds (109), ContentTime::from_seconds (110)
+ )
+ );
BOOST_CHECK_EQUAL (cts.size(), 1);
PositionImage image = render_subtitles (cts.front()->subs, dcp::Size (1998, 1080));