summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-01-08 13:22:26 +0000
committerCarl Hetherington <cth@carlh.net>2015-01-08 13:22:26 +0000
commited5a8c669840b5c4875bf061e49e150cdd1d950a (patch)
treef90d69927292b30e73271d5d6e57af086b9b8d87
parenta6e7413f61565306d771942fe60e89e3007f7670 (diff)
Fix build.
-rw-r--r--test/recover_test.cc2
-rw-r--r--test/test.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/recover_test.cc b/test/recover_test.cc
index 56a8a2f20..d442b6a4d 100644
--- a/test/recover_test.cc
+++ b/test/recover_test.cc
@@ -73,6 +73,6 @@ BOOST_AUTO_TEST_CASE (recover_test)
shared_ptr<dcp::StereoPictureMXF> B (new dcp::StereoPictureMXF (video));
dcp::EqualityOptions eq;
- eq.mxf_names_can_differ = true;
+ eq.mxf_filenames_can_differ = true;
BOOST_CHECK (A->equals (B, eq, boost::bind (&note, _1, _2)));
}
diff --git a/test/test.cc b/test/test.cc
index f31103b9b..3d58b0628 100644
--- a/test/test.cc
+++ b/test/test.cc
@@ -209,7 +209,7 @@ check_dcp (boost::filesystem::path ref, boost::filesystem::path check)
options.max_std_dev_pixel_error = 5;
options.max_audio_sample_error = 255;
options.cpl_annotation_texts_can_differ = true;
- options.mxf_names_can_differ = true;
+ options.mxf_filenames_can_differ = true;
options.reel_hashes_can_differ = true;
BOOST_CHECK (ref_dcp.equals (check_dcp, options, boost::bind (note, _1, _2)));