diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-04-20 22:32:08 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-04-20 22:32:08 +0100 |
| commit | f0157211412bf5d1b76f2ee60d06e0631dc2d76a (patch) | |
| tree | 2712386becf9326a7514838651339fa0d8797f4f /test | |
| parent | 39a93e0da1ccce2ee492151a2aa05a725fa35d57 (diff) | |
Cope with change to string.
Diffstat (limited to 'test')
| -rw-r--r-- | test/verify_test.cc | 4 |
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."); } |
