summaryrefslogtreecommitdiff
path: root/test/error_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-17 17:11:32 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-17 17:11:32 +0000
commit41fc6e366ad3de85704c35961beaf539ab9ceb8b (patch)
tree22c68206025af06f3915650d5feece76e57cbfc0 /test/error_test.cc
parent394abae7986abf4438184a712f16dfbe3c2734da (diff)
namespace libdcp -> dcp.
Diffstat (limited to 'test/error_test.cc')
-rw-r--r--test/error_test.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/error_test.cc b/test/error_test.cc
index eeff4f41..52d97556 100644
--- a/test/error_test.cc
+++ b/test/error_test.cc
@@ -31,17 +31,17 @@ using std::string;
BOOST_AUTO_TEST_CASE (error_test)
{
/* Create an empty DCP */
- libdcp::DCP d ("build/test/fred");
+ dcp::DCP d ("build/test/fred");
/* Random filename that does not exist */
vector<boost::filesystem::path> p;
p.push_back ("frobozz");
/* Trying to create video/audio MXFs using a non-existant file should throw an exception */
- libdcp::MonoPictureAsset pa ("build/test/fred", "video.mxf");
- BOOST_CHECK_THROW (pa.create (p), libdcp::FileError);
+ dcp::MonoPictureAsset pa ("build/test/fred", "video.mxf");
+ BOOST_CHECK_THROW (pa.create (p), dcp::FileError);
- libdcp::SoundAsset sa ("build/test/fred", "audio.mxf");
+ dcp::SoundAsset sa ("build/test/fred", "audio.mxf");
sa.set_channels (1);
- BOOST_CHECK_THROW (sa.create (p), libdcp::FileError);
+ BOOST_CHECK_THROW (sa.create (p), dcp::FileError);
}