From b357165e6f22c2dc4e6d504ca7411541ea138322 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 11 Apr 2014 10:46:49 +0100 Subject: [PATCH] Fix error in test. --- test/ffmpeg_examiner_test.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/ffmpeg_examiner_test.cc b/test/ffmpeg_examiner_test.cc index 93a913870..00a01e657 100644 --- a/test/ffmpeg_examiner_test.cc +++ b/test/ffmpeg_examiner_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2014 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -30,7 +30,7 @@ BOOST_AUTO_TEST_CASE (ffmpeg_examiner_test) shared_ptr content (new FFmpegContent (film, "test/data/count300bd24.m2ts")); shared_ptr examiner (new FFmpegExaminer (content)); - BOOST_CHECK_EQUAL (examiner->first_video().get(), ContentTime (600)); + BOOST_CHECK_EQUAL (examiner->first_video().get(), ContentTime::from_seconds (600)); BOOST_CHECK_EQUAL (examiner->audio_streams().size(), 1); - BOOST_CHECK_EQUAL (examiner->audio_streams()[0]->first_audio.get(), ContentTime (600)); + BOOST_CHECK_EQUAL (examiner->audio_streams()[0]->first_audio.get(), ContentTime::from_seconds (600)); } -- 2.30.2