From: Carl Hetherington Date: Mon, 20 Jun 2022 14:19:09 +0000 (+0200) Subject: Fix test references for libdcp commit 6c5328f07362510a41c8518ced62d74b2eff25cc X-Git-Tag: v2.16.15~12 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=8aa38cd1caa8b957ac8292d61f401729255c453c Fix test references for libdcp commit 6c5328f07362510a41c8518ced62d74b2eff25cc --- diff --git a/test/render_subtitles_test.cc b/test/render_subtitles_test.cc index d850062c2..508e73972 100644 --- a/test/render_subtitles_test.cc +++ b/test/render_subtitles_test.cc @@ -69,7 +69,7 @@ BOOST_AUTO_TEST_CASE (render_markup_test1) { std::list s; add (s, "Hello", false, false, false); - BOOST_CHECK_EQUAL (marked_up(s, 1024, 1, ""), "Hello"); + BOOST_CHECK_EQUAL(marked_up(s, 1024, 1, ""), "Hello"); } /** Test marked_up() in render_text.cc */ @@ -77,7 +77,7 @@ BOOST_AUTO_TEST_CASE (render_markup_test2) { std::list s; add (s, "Hello", false, true, false); - BOOST_CHECK_EQUAL (marked_up(s, 1024, 1, ""), "Hello"); + BOOST_CHECK_EQUAL(marked_up(s, 1024, 1, ""), "Hello"); } @@ -86,7 +86,7 @@ BOOST_AUTO_TEST_CASE (render_markup_test3) { std::list s; add (s, "Hello", true, true, false); - BOOST_CHECK_EQUAL (marked_up(s, 1024, 1, ""), "Hello"); + BOOST_CHECK_EQUAL(marked_up(s, 1024, 1, ""), "Hello"); } /** Test marked_up() in render_text.cc */ @@ -94,7 +94,7 @@ BOOST_AUTO_TEST_CASE (render_markup_test4) { std::list s; add (s, "Hello", true, true, true); - BOOST_CHECK_EQUAL (marked_up(s, 1024, 1, ""), "Hello"); + BOOST_CHECK_EQUAL(marked_up(s, 1024, 1, ""), "Hello"); } /** Test marked_up() in render_text.cc */ @@ -103,7 +103,7 @@ BOOST_AUTO_TEST_CASE (render_markup_test5) std::list s; add (s, "Hello", false, true, false); add (s, " world.", false, false, false); - BOOST_CHECK_EQUAL (marked_up(s, 1024, 1, ""), "Hello world."); + BOOST_CHECK_EQUAL (marked_up(s, 1024, 1, ""), "Hello world."); } /** Test marked_up() in render_text.cc */ @@ -113,5 +113,5 @@ BOOST_AUTO_TEST_CASE (render_markup_test6) add (s, "Hello", true, false, false); add (s, " world ", false, false, false); add (s, "we are bold.", false, true, false); - BOOST_CHECK_EQUAL (marked_up(s, 1024, 1, ""), "Hello world we are bold."); + BOOST_CHECK_EQUAL (marked_up(s, 1024, 1, ""), "Hello world we are bold."); }