From c734b8c1fb9224fb8ac6d1afd916bda78312139d Mon Sep 17 00:00:00 2001 From: Takashi Natsume Date: Fri, 28 Aug 2020 18:22:13 +0900 Subject: [PATCH] Make 'Feature Liaison' optional in test The 'Feature Liaison' subsection has been optional since I3769eb16fe396404113eba75a64d86e6b3d86f81. Make the subsection optional as well in a test ( tests/test_titles.py ). Change-Id: Ie47ba2e9c77ec849992308a97d39590ffd618afc Signed-off-by: Takashi Natsume --- tests/test_titles.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_titles.py b/tests/test_titles.py index 35541c9f6..456fc7746 100644 --- a/tests/test_titles.py +++ b/tests/test_titles.py @@ -23,8 +23,7 @@ import testtools # - "History" introduced in Liberty should be # mandatory for M. OPTIONAL_SECTIONS = ("History",) -OPTIONAL_SUBSECTIONS = collections.defaultdict(lambda: ()) -OPTIONAL_SUBSECTIONS['backlog'] = ('Upgrade impact',) +OPTIONAL_SUBSECTIONS = collections.defaultdict(lambda: ('Feature Liaison',)) OPTIONAL_SUBSECTIONS['queens'] = ('Upgrade impact',)