summaryrefslogtreecommitdiff
path: root/test/template_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/template_test.cc
parent6207d271effad4e691a5155ccdad083e03b010bc (diff)
Change Film::examine_and_add_content to take a vector of content.
Diffstat (limited to 'test/template_test.cc')
-rw-r--r--test/template_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/template_test.cc b/test/template_test.cc
index 064a070c1..7a34b6f99 100644
--- a/test/template_test.cc
+++ b/test/template_test.cc
@@ -39,7 +39,7 @@ BOOST_AUTO_TEST_CASE(template_wrong_channel_counts)
film->use_template(string("Bug"));
auto mono = content_factory("test/data/C.wav").front();
- film->examine_and_add_content(mono);
+ film->examine_and_add_content({mono});
BOOST_REQUIRE(!wait_for_jobs());
BOOST_REQUIRE_EQUAL(mono->audio->streams().size(), 1U);