summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-05-02 09:03:08 +0100
committerCarl Hetherington <cth@carlh.net>2014-05-02 09:03:08 +0100
commitd9f6eaec8f78e6d8d5739d3aa68bd7485d8534cd (patch)
tree4a05d15a891c2dbce7eca8e1825bfcf7b5fb71fe /test
parentbc10b0f1d7bcfb2302bd22e39f4400e452ffd6d5 (diff)
Fix subrip test.
Diffstat (limited to 'test')
-rw-r--r--test/subrip_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/subrip_test.cc b/test/subrip_test.cc
index 48bb265d5..3ea68737f 100644
--- a/test/subrip_test.cc
+++ b/test/subrip_test.cc
@@ -125,7 +125,8 @@ BOOST_AUTO_TEST_CASE (subrip_content_test)
/** Test parsing of full SubRip file content */
BOOST_AUTO_TEST_CASE (subrip_parse_test)
{
- shared_ptr<SubRipContent> content (new SubRipContent (shared_ptr<Film> (), "test/data/subrip.srt"));
+ shared_ptr<Film> film = new_test_film ("subrip_test");
+ shared_ptr<SubRipContent> content (new SubRipContent (film, "test/data/subrip.srt"));
content->examine (shared_ptr<Job> ());
BOOST_CHECK_EQUAL (content->full_length(), DCPTime::from_seconds ((3 * 60) + 56.471));