diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-07-09 20:41:10 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-07-11 12:22:11 +0200 |
| commit | b1e22dff981fb86ae04b12bb5a064e61030793a8 (patch) | |
| tree | ffb112f6e3f3311d8669f6a89628bf5f0bc40f2e /test/subtitle_charset_test.cc | |
| parent | 736d6bf3242a0ba3841cb765e97cf9fee3540460 (diff) | |
Use a vector rather than a list when returning from content_factory().
Diffstat (limited to 'test/subtitle_charset_test.cc')
| -rw-r--r-- | test/subtitle_charset_test.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/subtitle_charset_test.cc b/test/subtitle_charset_test.cc index 8233bf023..333a895bf 100644 --- a/test/subtitle_charset_test.cc +++ b/test/subtitle_charset_test.cc @@ -35,18 +35,18 @@ using std::dynamic_pointer_cast; /** Test parsing of UTF16 CR/LF input */ BOOST_AUTO_TEST_CASE (subtitle_charset_test1) { - auto content = content_factory (TestPaths::private_data() / "PADDINGTON soustitresVFdef.srt").front(); - auto film = new_test_film2 ("subtitle_charset_test1", { content }); + auto content = content_factory(TestPaths::private_data() / "PADDINGTON soustitresVFdef.srt"); + auto film = new_test_film2 ("subtitle_charset_test1", content); } /** Test parsing of OSX input */ BOOST_AUTO_TEST_CASE (subtitle_charset_test2) { - auto content = content_factory ("test/data/osx.srt").front(); - auto film = new_test_film2 ("subtitle_charset_test2", { content }); - auto ts = dynamic_pointer_cast<StringTextFileContent> (content); + auto content = content_factory("test/data/osx.srt"); + auto film = new_test_film2 ("subtitle_charset_test2", content); + auto ts = dynamic_pointer_cast<StringTextFileContent>(content[0]); BOOST_REQUIRE (ts); /* Make sure we got the subtitle data from the file */ - BOOST_REQUIRE_EQUAL (content->full_length(film).get(), 6052032); + BOOST_REQUIRE_EQUAL(content[0]->full_length(film).get(), 6052032); } |
