summaryrefslogtreecommitdiff
path: root/test/butler_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-05-20 16:55:57 +0200
committerCarl Hetherington <cth@carlh.net>2024-05-22 10:33:45 +0200
commitc95ba3eb99c5e4d6dca90cee7e5bb9077b6ed02c (patch)
tree82857f50135db65c8750e9e4492536d4639e0a91 /test/butler_test.cc
parente3dba6242aed7415eddbbfb1e5d56ce6680603c1 (diff)
Rename new_test_film2 -> new_test_film.
Diffstat (limited to 'test/butler_test.cc')
-rw-r--r--test/butler_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/butler_test.cc b/test/butler_test.cc
index b0d4590da..f7c307e3c 100644
--- a/test/butler_test.cc
+++ b/test/butler_test.cc
@@ -42,7 +42,7 @@ BOOST_AUTO_TEST_CASE (butler_test1)
{
auto video = content_factory("test/data/flat_red.png")[0];
auto audio = content_factory("test/data/staircase.wav")[0];
- auto film = new_test_film2("butler_test1", { video, audio });
+ auto film = new_test_film("butler_test1", { video, audio });
film->set_audio_channels (6);
/* This is the map of the player output (5.1) to the butler output (also 5.1) */
@@ -88,7 +88,7 @@ BOOST_AUTO_TEST_CASE (butler_test2)
{
auto content = content_factory(TestPaths::private_data() / "arrietty_JP-EN.mkv");
BOOST_REQUIRE (!content.empty());
- auto film = new_test_film2 ("butler_test2", { content.front() });
+ auto film = new_test_film("butler_test2", { content.front() });
BOOST_REQUIRE (content.front()->audio);
content.front()->audio->set_delay(100);