summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-08-13 16:24:37 +0100
committerCarl Hetherington <cth@carlh.net>2012-08-13 16:24:37 +0100
commit9c1d9b7d6e8624e594d7fdf22ced0847741eb289 (patch)
tree289580476eab44836485e3638074ca767786727e /test
parent7146798d8638cddfe4b3773fb295b6c31c57c826 (diff)
4th parameter of time is ticks (1 tick = 4ms) not milliseconds
Diffstat (limited to 'test')
-rw-r--r--test/tests.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests.cc b/test/tests.cc
index ccbf8787..a7ad67f6 100644
--- a/test/tests.cc
+++ b/test/tests.cc
@@ -133,7 +133,7 @@ BOOST_AUTO_TEST_CASE (dcp_time)
{
libdcp::Time t (977143, 24);
- BOOST_CHECK_EQUAL (t.ms, 292);
+ BOOST_CHECK_EQUAL (t.t, 73);
BOOST_CHECK_EQUAL (t.s, 34);
BOOST_CHECK_EQUAL (t.m, 18);
BOOST_CHECK_EQUAL (t.h, 11);