diff options
| -rw-r--r-- | test/verify_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/verify_test.cc b/test/verify_test.cc index dd95ef6e..a77a20aa 100644 --- a/test/verify_test.cc +++ b/test/verify_test.cc @@ -243,7 +243,7 @@ check_verify_result (vector<path> dir, vector<dcp::VerificationNote> test_notes) std::sort (notes.begin(), notes.end()); std::sort (test_notes.begin(), test_notes.end()); for (auto i = 0U; i < notes.size(); ++i) { - BOOST_REQUIRE_EQUAL (notes[i], test_notes[i]); + BOOST_REQUIRE_MESSAGE (notes[i] == test_notes[i], "Note from verify:\n" << notes[i] << "\ndoes not match the expected:\n" << test_notes[i]); } } |
