diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-29 20:55:16 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-10-12 17:33:27 +0200 |
| commit | b29eb5107c5e77fe01e43010e1582e733f6ceea1 (patch) | |
| tree | 3656e3c7774b39735c34ebb059697deccfb3b280 /test/isdcf_name_test.cc | |
| parent | cd92063f7c67093ac789cb3aa78e534a3a85ef92 (diff) | |
Fix incorrect sign on boost test constants.
Diffstat (limited to 'test/isdcf_name_test.cc')
| -rw-r--r-- | test/isdcf_name_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/isdcf_name_test.cc b/test/isdcf_name_test.cc index f5d6ff6d3..bdb21bfcc 100644 --- a/test/isdcf_name_test.cc +++ b/test/isdcf_name_test.cc @@ -70,7 +70,7 @@ BOOST_AUTO_TEST_CASE (isdcf_name_test) film->set_audio_channels (1); film->set_resolution (RESOLUTION_4K); shared_ptr<Content> text = content_factory("test/data/subrip.srt").front(); - BOOST_REQUIRE_EQUAL (text->text.size(), 1); + BOOST_REQUIRE_EQUAL (text->text.size(), 1U); text->text.front()->set_language ("fr"); text->text.front()->set_burn (true); film->examine_and_add_content (text); |
