summaryrefslogtreecommitdiff
path: root/test/read_dcp_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-04-22 11:08:54 +0200
committerCarl Hetherington <cth@carlh.net>2022-04-22 12:22:44 +0200
commited1f39dc5664d642f0f5af1a606e2e7aebd5e5f4 (patch)
tree6d77fdb25e8f80f7dd61c343997028727ec67f65 /test/read_dcp_test.cc
parent6ffa60433c4d6ce4ccee31e1f2459b0dd0758c00 (diff)
Fix some macOS signed/unsigned warnings.
Diffstat (limited to 'test/read_dcp_test.cc')
-rw-r--r--test/read_dcp_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/read_dcp_test.cc b/test/read_dcp_test.cc
index f995353e..d014bb8e 100644
--- a/test/read_dcp_test.cc
+++ b/test/read_dcp_test.cc
@@ -47,7 +47,7 @@ BOOST_AUTO_TEST_CASE (read_dcp_test1)
d.read ();
auto cpls = d.cpls ();
- BOOST_CHECK_EQUAL (cpls.size(), 1);
+ BOOST_CHECK_EQUAL (cpls.size(), 1U);
BOOST_REQUIRE (cpls[0]->annotation_text());
BOOST_CHECK_EQUAL (cpls[0]->annotation_text().get(), "A Test DCP");
@@ -63,7 +63,7 @@ BOOST_AUTO_TEST_CASE (read_dcp_test2)
d.read ();
auto cpls = d.cpls ();
- BOOST_CHECK_EQUAL (cpls.size(), 1);
+ BOOST_CHECK_EQUAL (cpls.size(), 1U);
BOOST_REQUIRE (cpls[0]->annotation_text());
BOOST_CHECK_EQUAL (cpls[0]->annotation_text().get(), "Test_FTR-1_F-119_10_2K_20160524_IOP_OV");