diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-17 17:11:32 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-17 17:11:32 +0000 |
| commit | 41fc6e366ad3de85704c35961beaf539ab9ceb8b (patch) | |
| tree | 22c68206025af06f3915650d5feece76e57cbfc0 /test/read_dcp_test.cc | |
| parent | 394abae7986abf4438184a712f16dfbe3c2734da (diff) | |
namespace libdcp -> dcp.
Diffstat (limited to 'test/read_dcp_test.cc')
| -rw-r--r-- | test/read_dcp_test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/read_dcp_test.cc b/test/read_dcp_test.cc index 0a9ac119..06df7058 100644 --- a/test/read_dcp_test.cc +++ b/test/read_dcp_test.cc @@ -27,14 +27,14 @@ using boost::shared_ptr; /* Read DCP that is in git and make sure that basic stuff is read in correctly */ BOOST_AUTO_TEST_CASE (read_dcp) { - libdcp::DCP d ("test/ref/DCP/foo"); + dcp::DCP d ("test/ref/DCP/foo"); d.read (); - list<shared_ptr<libdcp::CPL> > cpls = d.cpls (); + list<shared_ptr<dcp::CPL> > cpls = d.cpls (); BOOST_CHECK_EQUAL (cpls.size(), 1); BOOST_CHECK_EQUAL (cpls.front()->name(), "A Test DCP"); - BOOST_CHECK_EQUAL (cpls.front()->content_kind(), libdcp::FEATURE); + BOOST_CHECK_EQUAL (cpls.front()->content_kind(), dcp::FEATURE); BOOST_CHECK_EQUAL (cpls.front()->frames_per_second(), 24); BOOST_CHECK_EQUAL (cpls.front()->length(), 24); } |
