summaryrefslogtreecommitdiff
path: root/test/markers_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-07-15 03:36:59 +0200
committerCarl Hetherington <cth@carlh.net>2025-07-15 18:03:57 +0200
commit21415bdb69a99c4fc36cf4b5e5160a171bb1cad4 (patch)
tree46265de6587585d292ac4c97267327af0c359c1c /test/markers_test.cc
parent6207d271effad4e691a5155ccdad083e03b010bc (diff)
Change Film::examine_and_add_content to take a vector of content.
Diffstat (limited to 'test/markers_test.cc')
-rw-r--r--test/markers_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/markers_test.cc b/test/markers_test.cc
index 6e5f9d8df..38137223f 100644
--- a/test/markers_test.cc
+++ b/test/markers_test.cc
@@ -44,7 +44,7 @@ BOOST_AUTO_TEST_CASE (automatic_ffoc_lfoc_markers_test1)
{
string const name = "automatic_ffoc_lfoc_markers_test1";
auto film = new_test_film(name);
- film->examine_and_add_content (content_factory("test/data/flat_red.png")[0]);
+ film->examine_and_add_content(content_factory("test/data/flat_red.png"));
BOOST_REQUIRE (!wait_for_jobs());
film->set_interop (false);
@@ -73,7 +73,7 @@ BOOST_AUTO_TEST_CASE (automatic_ffoc_lfoc_markers_test2)
{
string const name = "automatic_ffoc_lfoc_markers_test2";
auto film = new_test_film(name);
- film->examine_and_add_content (content_factory("test/data/flat_red.png")[0]);
+ film->examine_and_add_content(content_factory("test/data/flat_red.png"));
BOOST_REQUIRE (!wait_for_jobs());
film->set_interop (false);