Use a vector rather than a list when returning from content_factory().
[dcpomatic.git] / test / dcp_decoder_test.cc
index 5d4d1e0cacbb2a2648513c56fac28352e747fe2d..da4f6dcbb8bd0f4bb55dc7ee6ef8d9afa8b22ea2 100644 (file)
@@ -53,16 +53,16 @@ BOOST_AUTO_TEST_CASE (check_reuse_old_data_test)
 {
        /* Make some DCPs */
 
-       auto ov = new_test_film2 ("check_reuse_old_data_ov", {content_factory("test/data/flat_red.png").front()});
+       auto ov = new_test_film2 ("check_reuse_old_data_ov", content_factory("test/data/flat_red.png"));
        make_and_verify_dcp (ov);
 
        auto ov_content = make_shared<DCPContent>(ov->dir(ov->dcp_name(false)));
-       auto vf = new_test_film2 ("check_reuse_old_data_vf", {ov_content, content_factory("test/data/L.wav").front()});
+       auto vf = new_test_film2 ("check_reuse_old_data_vf", {ov_content, content_factory("test/data/L.wav")[0]});
        ov_content->set_reference_video (true);
        make_and_verify_dcp (vf, {dcp::VerificationNote::Code::EXTERNAL_ASSET});
 
        auto encrypted = new_test_film2 ("check_reuse_old_data_decrypted");
-       encrypted->examine_and_add_content (content_factory("test/data/flat_red.png").front());
+       encrypted->examine_and_add_content (content_factory("test/data/flat_red.png")[0]);
        BOOST_REQUIRE (!wait_for_jobs());
        encrypted->set_encrypted (true);
        make_and_verify_dcp (encrypted);