Cope with change to string.
authorCarl Hetherington <cth@carlh.net>
Fri, 20 Apr 2018 21:32:08 +0000 (22:32 +0100)
committerCarl Hetherington <cth@carlh.net>
Fri, 20 Apr 2018 21:32:08 +0000 (22:32 +0100)
test/verify_test.cc

index a036073050688d6d742ac5bd8998fbe2cc764f34..f39d7ae610e1edee3de7ad97fc30b01b8e8ef5c8 100644 (file)
@@ -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.");
 }