summaryrefslogtreecommitdiff
path: root/test/kdm_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-06 08:28:18 +0000
committerCarl Hetherington <cth@carlh.net>2016-01-10 13:09:45 +0000
commit93f29880839dc5589bb35f63260a7152ead7655f (patch)
tree865dd65298dd11d949efed2ac3f58f3564c7cc8f /test/kdm_test.cc
parentd7965cce4c5f95da7971bce6f800739a4cd2f17d (diff)
Introduce dc::Package, changing lots of namespaces in the process.
Diffstat (limited to 'test/kdm_test.cc')
-rw-r--r--test/kdm_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/kdm_test.cc b/test/kdm_test.cc
index 754c28ce..d5d5ba5a 100644
--- a/test/kdm_test.cc
+++ b/test/kdm_test.cc
@@ -32,9 +32,9 @@ BOOST_AUTO_TEST_CASE (kdm_test)
{
dcp::dc::DecryptedKDM kdm (
dcp::dc::EncryptedKDM (
- dcp::dc::file_to_string ("test/data/kdm_TONEPLATES-SMPTE-ENC_.smpte-430-2.ROOT.NOT_FOR_PRODUCTION_20130706_20230702_CAR_OV_t1_8971c838.xml")
+ dcp::file_to_string ("test/data/kdm_TONEPLATES-SMPTE-ENC_.smpte-430-2.ROOT.NOT_FOR_PRODUCTION_20130706_20230702_CAR_OV_t1_8971c838.xml")
),
- dcp::dc::file_to_string ("test/data/private.key")
+ dcp::file_to_string ("test/data/private.key")
);
list<dcp::dc::DecryptedKDMKey> keys = kdm.keys ();
@@ -54,7 +54,7 @@ BOOST_AUTO_TEST_CASE (kdm_test)
BOOST_AUTO_TEST_CASE (kdm_passthrough_test)
{
dcp::dc::EncryptedKDM kdm (
- dcp::dc::file_to_string ("test/data/kdm_TONEPLATES-SMPTE-ENC_.smpte-430-2.ROOT.NOT_FOR_PRODUCTION_20130706_20230702_CAR_OV_t1_8971c838.xml")
+ dcp::file_to_string ("test/data/kdm_TONEPLATES-SMPTE-ENC_.smpte-430-2.ROOT.NOT_FOR_PRODUCTION_20130706_20230702_CAR_OV_t1_8971c838.xml")
);
shared_ptr<xmlpp::DomParser> parser (new xmlpp::DomParser ());