summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-01-22 23:22:27 +0000
committerCarl Hetherington <cth@carlh.net>2013-01-22 23:22:27 +0000
commitd714233760a8f6a0541c279c3046984f2d199814 (patch)
tree2941f421f56ed7c351a7dd59dc903148df5e1d07 /test
parente04553be273a10e7face6f8f245d9a37e05454d2 (diff)
Remove hacky start_frame stuff from SoundAsset for now.
Diffstat (limited to 'test')
-rw-r--r--test/tests.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/tests.cc b/test/tests.cc
index 3fb56a28..2d21ae86 100644
--- a/test/tests.cc
+++ b/test/tests.cc
@@ -85,7 +85,6 @@ BOOST_AUTO_TEST_CASE (dcp_test)
&(d.Progress),
24,
24,
- 0,
2
));
@@ -102,7 +101,7 @@ BOOST_AUTO_TEST_CASE (error_test)
p.push_back ("frobozz");
BOOST_CHECK_THROW (new libdcp::MonoPictureAsset (p, "build/test/bar", "video.mxf", &d.Progress, 24, 24, libdcp::Size (32, 32)), libdcp::FileError);
- BOOST_CHECK_THROW (new libdcp::SoundAsset (p, "build/test/bar", "audio.mxf", &d.Progress, 24, 24, 0), libdcp::FileError);
+ BOOST_CHECK_THROW (new libdcp::SoundAsset (p, "build/test/bar", "audio.mxf", &d.Progress, 24, 24), libdcp::FileError);
}
BOOST_AUTO_TEST_CASE (read_dcp)