diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-03-19 18:58:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-03-29 17:43:07 +0200 |
| commit | 72307b2d09d1e677909b67825e098e1765828c42 (patch) | |
| tree | d552709d3ece31c4977747e72afb655b45229daf | |
| parent | 2dfac2ec09a97b77faea95007be2b304b450530f (diff) | |
Fix dependence of test on a particular j2c path.
| -rw-r--r-- | test/video_mxf_content_test.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/video_mxf_content_test.cc b/test/video_mxf_content_test.cc index 5edb85882..3ecc2775e 100644 --- a/test/video_mxf_content_test.cc +++ b/test/video_mxf_content_test.cc @@ -40,9 +40,6 @@ using std::dynamic_pointer_cast; using std::make_shared; -static boost::filesystem::path ref_mxf = "test/data/scaling_test_185_185/j2c_6a2ffab1-9ea5-4428-9027-9d458363c95f.mxf"; - - static void note (dcp::NoteType, std::string) { @@ -57,6 +54,8 @@ BOOST_AUTO_TEST_CASE (video_mxf_content_test) film->set_container (Ratio::from_id ("185")); film->set_name ("video_mxf_content_test"); + auto const ref_mxf = find_file("test/data/scaling_test_185_185", "j2c"); + auto content = content_factory(ref_mxf)[0]; auto check = dynamic_pointer_cast<VideoMXFContent> (content); BOOST_REQUIRE (check); |
