summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/verify_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/verify_test.cc b/test/verify_test.cc
index a0360730..f39d7ae6 100644
--- a/test/verify_test.cc
+++ b/test/verify_test.cc
@@ -108,7 +108,7 @@ BOOST_AUTO_TEST_CASE (verify_test1)
notes = dcp::verify (directories, &stage, &progress);
BOOST_CHECK_EQUAL (notes.size(), 2);
BOOST_CHECK_EQUAL (notes.front().type(), dcp::VerificationNote::VERIFY_ERROR);
- BOOST_CHECK_EQUAL (notes.front().note(), "Picture asset hash is incorrect");
+ BOOST_CHECK_EQUAL (notes.front().note(), "Picture asset hash is incorrect.");
BOOST_CHECK_EQUAL (notes.back().type(), dcp::VerificationNote::VERIFY_ERROR);
- BOOST_CHECK_EQUAL (notes.back().note(), "Sound asset hash is incorrect");
+ BOOST_CHECK_EQUAL (notes.back().note(), "Sound asset hash is incorrect.");
}