diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-04 14:45:31 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-01-04 14:45:31 +0000 |
| commit | e18e48ce04852c5418099a9f1e4c6928eb03cbd7 (patch) | |
| tree | 916c7f7594e6b0da74162366545d36976f7171c3 /test/read_dcp_test.cc | |
| parent | 59e8364fd9390d3285e15a5491c7b1876fe9696b (diff) | |
Make specific DCP CPL class.
Diffstat (limited to 'test/read_dcp_test.cc')
| -rw-r--r-- | test/read_dcp_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/read_dcp_test.cc b/test/read_dcp_test.cc index 097d0aa9..43aec308 100644 --- a/test/read_dcp_test.cc +++ b/test/read_dcp_test.cc @@ -19,7 +19,7 @@ #include <boost/test/unit_test.hpp> #include "dcp.h" -#include "cpl.h" +#include "dcp_cpl.h" using std::list; using boost::shared_ptr; @@ -30,7 +30,7 @@ BOOST_AUTO_TEST_CASE (read_dcp) dcp::DCP d ("test/ref/DCP/dcp_test1"); d.read (); - list<shared_ptr<dcp::CPL> > cpls = d.cpls (); + list<shared_ptr<dcp::DCPCPL> > cpls = d.cpls (); BOOST_CHECK_EQUAL (cpls.size(), 1); BOOST_CHECK_EQUAL (cpls.front()->annotation_text(), "A Test DCP"); |
