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/find_missing_test.cc | |
| parent | 736d6bf3242a0ba3841cb765e97cf9fee3540460 (diff) | |
Use a vector rather than a list when returning from content_factory().
Diffstat (limited to 'test/find_missing_test.cc')
| -rw-r--r-- | test/find_missing_test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/find_missing_test.cc b/test/find_missing_test.cc index b23581810..3e64bede4 100644 --- a/test/find_missing_test.cc +++ b/test/find_missing_test.cc @@ -49,9 +49,9 @@ BOOST_AUTO_TEST_CASE (find_missing_test_with_single_files) /* Make a film with that content */ auto film = new_test_film2 (name + "_film", { - content_factory(content_dir / "A.png").front(), - content_factory(content_dir / "B.png").front(), - content_factory(content_dir / "C.png").front() + content_factory(content_dir / "A.png")[0], + content_factory(content_dir / "B.png")[0], + content_factory(content_dir / "C.png")[0] }); film->write_metadata (); |
