From d867b45c8de7400c977d7d1f188936ba3399432e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 7 Jan 2014 11:11:24 +0000 Subject: [PATCH] Fix test. --- test/stream_test.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/stream_test.cc b/test/stream_test.cc index 6d8938ca4..6abcf6e22 100644 --- a/test/stream_test.cc +++ b/test/stream_test.cc @@ -35,6 +35,9 @@ BOOST_AUTO_TEST_CASE (stream_test) root->add_child("Id")->add_child_text ("4"); root->add_child("FrameRate")->add_child_text ("44100"); root->add_child("Channels")->add_child_text ("2"); + + /* This is the state file version 5 description of the mapping */ + xmlpp::Element* mapping = root->add_child("Mapping"); mapping->add_child("ContentChannels")->add_child_text ("2"); { @@ -62,7 +65,7 @@ BOOST_AUTO_TEST_CASE (stream_test) map->add_child("DCP")->add_child_text ("2"); } - FFmpegAudioStream a (shared_ptr (new cxml::Node (root)), Film::state_version); + FFmpegAudioStream a (shared_ptr (new cxml::Node (root)), 5); BOOST_CHECK_EQUAL (a.id, 4); BOOST_CHECK_EQUAL (a.frame_rate, 44100); -- 2.30.2