summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-03-27 08:06:16 +0100
committerCarl Hetherington <cth@carlh.net>2025-03-27 08:06:16 +0100
commitb2cc8f1e74f87f5a403a658204b34a0cfc5184d6 (patch)
tree3675f5bc5c81fade41acf91fba4125fccdfe924e /test
parent11af40ef9ef50ae5cf7ef8812f5bab56bba5408b (diff)
Update release notes test for removed default release notes.
Diffstat (limited to 'test')
-rw-r--r--test/release_notes_test.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/release_notes_test.cc b/test/release_notes_test.cc
index c303985de..addcc9f85 100644
--- a/test/release_notes_test.cc
+++ b/test/release_notes_test.cc
@@ -27,17 +27,6 @@
using std::string;
-// If we have no previous version we're on something before 2.16.19 so we want the release notes
-BOOST_AUTO_TEST_CASE(release_notes_test1)
-{
- for (auto version: { "2.16.19", "2.16.20", "2.18.0", "2.18.1devel6" }) {
- Config::instance()->unset_last_release_notes_version();
- auto notes = find_release_notes(true, string(version));
- BOOST_CHECK(notes.get_value_or("").find("In this version there are changes to the way that subtitles are positioned.") != string::npos);
- }
-}
-
-
// Once we're running 2.17.19 we have no more release notes (for now, at least)
BOOST_AUTO_TEST_CASE(release_notes_test2)
{