diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-04 17:24:12 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-23 11:38:43 +0200 |
| commit | d97029163865e212dc3d7b3c57c16459933a11f6 (patch) | |
| tree | 608295da40f4bc8363ffbe947e5b28ccd0bf39de /test | |
| parent | 7ab22a7aa171aec36563b8ec0b7c0b69a36094fe (diff) | |
Support CPL metadata.
Diffstat (limited to 'test')
| -rw-r--r-- | test/import_dcp_test.cc | 4 |
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()); |
