summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-09-04 17:24:12 +0200
committerCarl Hetherington <cth@carlh.net>2020-09-21 21:56:50 +0200
commitacee88762b4588c746f93dec3f210283589bb2fc (patch)
tree42cb818a671fb90f070d1076a396d1682ce5454c /test
parent84f34d497d26270753a76fb323231f4ece9ff18d (diff)
Support CPL metadata.cpl-metadata
Diffstat (limited to 'test')
-rw-r--r--test/import_dcp_test.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/import_dcp_test.cc b/test/import_dcp_test.cc
index 83dd0c6de..07116c1e2 100644
--- a/test/import_dcp_test.cc
+++ b/test/import_dcp_test.cc
@@ -170,7 +170,9 @@ BOOST_AUTO_TEST_CASE (import_dcp_metadata_test)
ratings.push_back (dcp::Rating("MPAA", "NC-17"));
film->set_ratings (ratings);
- film->set_content_version ("Fred");
+ vector<string> cv;
+ cv.push_back ("Fred");
+ film->set_content_versions (cv);
film->make_dcp ();
BOOST_REQUIRE (!wait_for_jobs());