summaryrefslogtreecommitdiff
path: root/test/verify_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/verify_test.cc')
-rw-r--r--test/verify_test.cc11
1 files changed, 1 insertions, 10 deletions
diff --git a/test/verify_test.cc b/test/verify_test.cc
index 7f32c438..e3cff85a 100644
--- a/test/verify_test.cc
+++ b/test/verify_test.cc
@@ -242,10 +242,9 @@ string
to_string(dcp::VerificationNote const& note)
{
string s = note_to_string(note) + dcp::String::compose(
- "\n [%1 %2 %3 %4 %5 %6 %7 ",
+ "\n [%1 %2 %3 %4 %5 %6 ",
static_cast<int>(note.type()),
static_cast<int>(note.code()),
- note.note().get_value_or("<none>"),
note.file().get_value_or("<none>"),
note.line().get_value_or(0),
note.frame().get_value_or(0),
@@ -420,14 +419,6 @@ note(dcp::VerificationNote::Code code, shared_ptr<const dcp::CPL> cpl)
static
dcp::VerificationNote
-note(dcp::VerificationNote::Code code, string note, shared_ptr<const dcp::CPL> cpl)
-{
- return dcp::VerificationNote(code, note).set_cpl_id(cpl->id());
-}
-
-
-static
-dcp::VerificationNote
note(dcp::VerificationNote::Code code, boost::filesystem::path path, shared_ptr<const dcp::CPL> cpl)
{
return dcp::VerificationNote(code, path).set_cpl_id(cpl->id());