diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-11-26 21:14:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-26 21:14:22 +0100 |
| commit | 3a0fba174d25c7be461b4714b5ab8bd1fcf81ed8 (patch) | |
| tree | 17eb2dc53c1ae7e565f5ba2b1a10e645ccfc5089 | |
| parent | 5de47eac37c53d00ce95dd086a8ffbd15eb7b03f (diff) | |
More macOS build fixes.
| -rw-r--r-- | test/markers_test.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/markers_test.cc b/test/markers_test.cc index f18705732..cbdad26c5 100644 --- a/test/markers_test.cc +++ b/test/markers_test.cc @@ -54,9 +54,9 @@ BOOST_AUTO_TEST_CASE (automatic_ffoc_lfoc_markers_test1) dcp::DCP dcp (String::compose("build/test/%1/%2", name, film->dcp_name())); dcp.read (); - BOOST_REQUIRE_EQUAL (dcp.cpls().size(), 1); + BOOST_REQUIRE_EQUAL (dcp.cpls().size(), 1U); shared_ptr<dcp::CPL> cpl = dcp.cpls().front(); - BOOST_REQUIRE_EQUAL (cpl->reels().size(), 1); + BOOST_REQUIRE_EQUAL (cpl->reels().size(), 1U); shared_ptr<dcp::Reel> reel = cpl->reels().front(); shared_ptr<dcp::ReelMarkersAsset> markers = reel->main_markers(); BOOST_REQUIRE (markers); @@ -86,9 +86,9 @@ BOOST_AUTO_TEST_CASE (automatic_ffoc_lfoc_markers_test2) dcp::DCP dcp (String::compose("build/test/%1/%2", name, film->dcp_name())); dcp.read (); - BOOST_REQUIRE_EQUAL (dcp.cpls().size(), 1); + BOOST_REQUIRE_EQUAL (dcp.cpls().size(), 1U); shared_ptr<dcp::CPL> cpl = dcp.cpls().front(); - BOOST_REQUIRE_EQUAL (cpl->reels().size(), 1); + BOOST_REQUIRE_EQUAL (cpl->reels().size(), 1U); shared_ptr<dcp::Reel> reel = cpl->reels().front(); shared_ptr<dcp::ReelMarkersAsset> markers = reel->main_markers(); BOOST_REQUIRE (markers); |
