Verify encrypted DCPs (more) correctly (#2659).
[dcpomatic.git] / test / test.cc
index 2bd31292a562ffab3dd49522810935257c089e18..8ca103a6bdedb9800c97ef94f3f14509ac5253ee 100644 (file)
@@ -948,7 +948,7 @@ void progress (float) {}
 void
 verify_dcp(boost::filesystem::path dir, vector<dcp::VerificationNote::Code> ignore)
 {
-       auto notes = dcp::verify({dir}, &stage, &progress, {}, TestPaths::xsd());
+       auto notes = dcp::verify({dir}, {}, &stage, &progress, {}, TestPaths::xsd());
        bool ok = true;
        for (auto i: notes) {
                if (find(ignore.begin(), ignore.end(), i.code()) == ignore.end()) {