summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-02 21:52:38 +0100
committerCarl Hetherington <cth@carlh.net>2022-12-02 21:52:38 +0100
commitd5e6fa029f1fb7b7dccd32dd2906a0858a876cae (patch)
tree395c99c9b4792e49f2adfbf227d2f4541a960c1b /test
parente21a8bc77f80374a78085c492e4dd14315457e5f (diff)
Don't use "NR" in the ISDCF name if there is no rating.
Thierry says this is not used out in the wild, and I can't find any reference to say that it must be there, so remove it.
Diffstat (limited to 'test')
-rw-r--r--test/isdcf_name_test.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/isdcf_name_test.cc b/test/isdcf_name_test.cc
index d64f45b89..b15612895 100644
--- a/test/isdcf_name_test.cc
+++ b/test/isdcf_name_test.cc
@@ -232,5 +232,10 @@ BOOST_AUTO_TEST_CASE (isdcf_name_test)
/* Check that the proper codes are used, not just part of the language code; in this case, QBP instead of PT (#2235) */
film->set_audio_language(dcp::LanguageTag("pt-BR"));
BOOST_CHECK_EQUAL (film->isdcf_name(false), "LikeShouting_XSN-2_F-133_QBP-fr_US-R_71-HI-VI_4K_DI_20140704_PPF_SMPTE_OV");
+
+ /* Check that nothing is added for non-existant ratings */
+ film->set_ratings({});
+ BOOST_CHECK_EQUAL (film->isdcf_name(false), "LikeShouting_XSN-2_F-133_QBP-fr_US_71-HI-VI_4K_DI_20140704_PPF_SMPTE_OV");
+
}