summaryrefslogtreecommitdiff
path: root/test/film_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/film_test.cc
parente3dba6242aed7415eddbbfb1e5d56ce6680603c1 (diff)
Rename new_test_film2 -> new_test_film.
Diffstat (limited to 'test/film_test.cc')
-rw-r--r--test/film_test.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/film_test.cc b/test/film_test.cc
index e8f04dc93..3493c79ce 100644
--- a/test/film_test.cc
+++ b/test/film_test.cc
@@ -31,16 +31,16 @@ BOOST_AUTO_TEST_CASE(film_contains_atmos_content_test)
auto image = content_factory("test/data/flat_red.png")[0];
auto sound = content_factory("test/data/white.wav")[0];
- auto film1 = new_test_film2("film_contains_atmos_content_test1", { atmos, image, sound });
+ auto film1 = new_test_film("film_contains_atmos_content_test1", { atmos, image, sound });
BOOST_CHECK(film1->contains_atmos_content());
- auto film2 = new_test_film2("film_contains_atmos_content_test2", { sound, atmos, image });
+ auto film2 = new_test_film("film_contains_atmos_content_test2", { sound, atmos, image });
BOOST_CHECK(film2->contains_atmos_content());
- auto film3 = new_test_film2("film_contains_atmos_content_test3", { image, sound, atmos });
+ auto film3 = new_test_film("film_contains_atmos_content_test3", { image, sound, atmos });
BOOST_CHECK(film3->contains_atmos_content());
- auto film4 = new_test_film2("film_contains_atmos_content_test4", { image, sound });
+ auto film4 = new_test_film("film_contains_atmos_content_test4", { image, sound });
BOOST_CHECK(!film4->contains_atmos_content());
}