AA-4: Adding waffle flag for dates widget

This commit is contained in:
Dillon Dumesnil
2020-02-18 10:15:00 -05:00
parent 5853cddfc1
commit be7ef9804d
6 changed files with 20 additions and 10 deletions

View File

@@ -81,6 +81,10 @@ COURSE_ENABLE_UNENROLLED_ACCESS_FLAG = CourseWaffleFlag(SEO_WAFFLE_FLAG_NAMESPAC
# Waffle flag to enable relative dates for course content
RELATIVE_DATES_FLAG = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'relative_dates')
# Waffle flag to enable showing FBE messaging, assignment due dates, and modified
# end date logic (for self-paced courses) in the date widget
DATE_WIDGET_V2_FLAG = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'date_widget_v2')
def course_home_page_title(course): # pylint: disable=unused-argument
"""

View File

@@ -218,7 +218,7 @@ class TestCourseHomePage(CourseHomePageTestCase):
# Fetch the view and verify the query counts
# TODO: decrease query count as part of REVO-28
with self.assertNumQueries(76, table_blacklist=QUERY_COUNT_TABLE_BLACKLIST):
with self.assertNumQueries(74, table_blacklist=QUERY_COUNT_TABLE_BLACKLIST):
with check_mongo_calls(4):
url = course_home_url(self.course)
self.client.get(url)