diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/dcp_subtitle_test.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/dcp_subtitle_test.cc b/test/dcp_subtitle_test.cc index 20fbe5f1a..fe95cbbfc 100644 --- a/test/dcp_subtitle_test.cc +++ b/test/dcp_subtitle_test.cc @@ -140,7 +140,8 @@ BOOST_AUTO_TEST_CASE (dcp_subtitle_test2) stored = optional<ContentStringText> (); while (!decoder->pass()) { if (stored && stored->from() == ContentTime(0)) { - BOOST_CHECK_EQUAL (stored->subs.front().text(), "<b>Hello world!</b>"); + /* Text passed around by the player should be unescaped */ + BOOST_CHECK_EQUAL(stored->subs.front().text(), "<b>Hello world!</b>"); } } } |
