summaryrefslogtreecommitdiff
path: root/test/test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-11-20 00:25:27 +0100
committerCarl Hetherington <cth@carlh.net>2023-11-20 21:37:37 +0100
commit7b439c9baf719b135922e6c6b53472915fed3573 (patch)
tree96493aefa814e5d2bcd73d1bab057d8e6f62d643 /test/test.cc
parent9b5cff118fe03649c0c404b35f2900ff36008637 (diff)
Verify encrypted DCPs (more) correctly (#2659).
Diffstat (limited to 'test/test.cc')
-rw-r--r--test/test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.cc b/test/test.cc
index 2bd31292a..8ca103a6b 100644
--- a/test/test.cc
+++ b/test/test.cc
@@ -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()) {