summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-04-20 22:32:08 +0100
committerCarl Hetherington <cth@carlh.net>2018-04-20 22:32:08 +0100
commitf0157211412bf5d1b76f2ee60d06e0631dc2d76a (patch)
tree2712386becf9326a7514838651339fa0d8797f4f
parent39a93e0da1ccce2ee492151a2aa05a725fa35d57 (diff)
Cope with change to string.
-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.");
}