diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-07-15 03:36:59 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-07-15 18:03:57 +0200 |
| commit | 21415bdb69a99c4fc36cf4b5e5160a171bb1cad4 (patch) | |
| tree | 46265de6587585d292ac4c97267327af0c359c1c /test/content_test.cc | |
| parent | 6207d271effad4e691a5155ccdad083e03b010bc (diff) | |
Change Film::examine_and_add_content to take a vector of content.
Diffstat (limited to 'test/content_test.cc')
| -rw-r--r-- | test/content_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/content_test.cc b/test/content_test.cc index b9a25a02b..b6c6703c5 100644 --- a/test/content_test.cc +++ b/test/content_test.cc @@ -114,7 +114,7 @@ BOOST_AUTO_TEST_CASE (content_test4) auto film = new_test_film("content_test4"); auto video = content_factory("test/data/count300bd24.m2ts")[0]; - film->examine_and_add_content (video); + film->examine_and_add_content({video}); BOOST_REQUIRE (!wait_for_jobs()); video->set_trim_end (dcpomatic::ContentTime(3000)); |
