summaryrefslogtreecommitdiff
path: root/test/create_cli_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-05-09 22:20:53 +0200
committerCarl Hetherington <cth@carlh.net>2024-05-29 10:35:55 +0200
commit0e1a20f2717c9e14d2b6675260e2229dfb145ffe (patch)
tree545a6d91e6d120be8f3882577b87c183aff43298 /test/create_cli_test.cc
parent2d82f86d2f99b812edd5d64d13f3dd5a4950719e (diff)
Remove default Interop/SMPTE setting.
Diffstat (limited to 'test/create_cli_test.cc')
-rw-r--r--test/create_cli_test.cc17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/create_cli_test.cc b/test/create_cli_test.cc
index 8ce19d5a2..7006fa6a0 100644
--- a/test/create_cli_test.cc
+++ b/test/create_cli_test.cc
@@ -286,20 +286,3 @@ BOOST_AUTO_TEST_CASE(create_cli_template_test)
film = cc.make_film();
BOOST_CHECK(film->interop());
}
-
-
-BOOST_AUTO_TEST_CASE(create_cli_defaults_test)
-{
- ConfigRestorer cr;
-
- /* I think on balance dcpomatic2_create should not use the defaults from Config;
- * it seems a bit surprising that settings from a GUI tool can change the behaviour of
- * a CLI tool, and at some point we're probably going to remove all the default config
- * options from the main DoM anyway (in favour of a default template).
- */
- Config::instance()->set_default_interop(true);
- auto cc = run("dcpomatic2_create test/data/flat_red.png");
- auto film = cc.make_film();
- BOOST_CHECK(!film->interop());
-}
-