diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-02-04 08:18:08 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-02-04 08:18:08 +0100 |
| commit | 12da8c3da906dbc40cf01b745b3be66c9302c2e0 (patch) | |
| tree | f56c2e25263252b613408cd28b80a1c622bcf206 | |
| parent | 42cdfe79afa72a428b5ee851611079f84d237f63 (diff) | |
Fix test for better diacriticals handling.
| -rw-r--r-- | test/file_naming_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/file_naming_test.cc b/test/file_naming_test.cc index ef43316d2..079026cba 100644 --- a/test/file_naming_test.cc +++ b/test/file_naming_test.cc @@ -148,7 +148,7 @@ BOOST_AUTO_TEST_CASE (file_naming_test2) boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (film->file(film->dcp_name())); i != boost::filesystem::directory_iterator(); ++i) { - if (boost::regex_match(i->path().string(), boost::regex(".*flt_red\\.png_.*\\.mxf"))) { + if (boost::regex_match(i->path().string(), boost::regex(".*flat_red\\.png_.*\\.mxf"))) { ++got[0]; } else if (boost::regex_match(i->path().string(), boost::regex(".*flat_green\\.png_.*\\.mxf"))) { ++got[1]; |
