diff options
| -rw-r--r-- | test/smpte_subtitle_test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/smpte_subtitle_test.cc b/test/smpte_subtitle_test.cc index 52154dbf..dba5f9bf 100644 --- a/test/smpte_subtitle_test.cc +++ b/test/smpte_subtitle_test.cc @@ -801,9 +801,9 @@ BOOST_AUTO_TEST_CASE(smpte_subtitle_intrinsic_duration_read_correctly) BOOST_AUTO_TEST_CASE(pass_through_smpte_subtitle_with_variable_z) { - auto source = private_test / "data" / "subtitles_with_vZani.xml"; - dcp::SMPTETextAsset test(private_test / "data" / "subtitles_with_vZani.xml"); + auto source = "test/data/subtitles_with_vZani.xml"; + dcp::SMPTETextAsset test("test/datasubtitles_with_vZani.xml"); /* _fixed is a version of the source with some changes made by libdcp that are OK */ - check_xml(dcp::file_to_string(private_test / "data" / "subtitles_with_vZani_fixed.xml"), test.xml_as_string(), { "IssueDate" }, true); + check_xml(dcp::file_to_string("test/data/subtitles_with_vZani_fixed.xml"), test.xml_as_string(), { "IssueDate" }, true); } |
