From 6dfbf94b87da3b83a7907f8557792741c30d8e33 Mon Sep 17 00:00:00 2001 From: Jillian Vogel Date: Fri, 8 Feb 2019 13:54:51 +1030 Subject: [PATCH] Fixes flaky tests added by https://github.com/edx/edx-platform/pull/19018 using CacheIsolationTestCase --- openedx/core/djangoapps/schedules/tests/test_resolvers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/core/djangoapps/schedules/tests/test_resolvers.py b/openedx/core/djangoapps/schedules/tests/test_resolvers.py index 2b4057b5de..3411f16797 100644 --- a/openedx/core/djangoapps/schedules/tests/test_resolvers.py +++ b/openedx/core/djangoapps/schedules/tests/test_resolvers.py @@ -99,7 +99,7 @@ class TestBinnedSchedulesBaseResolver(SchedulesResolverTestMixin, CacheIsolation "Can't test schedules if the app isn't installed") @override_waffle_flag(COURSE_UPDATE_WAFFLE_FLAG, True) @freeze_time('2017-08-01 01:00:00', tz_offset=0, tick=False) -class TestCourseUpdateResolver(SchedulesResolverTestMixin, ModuleStoreTestCase): +class TestCourseUpdateResolver(SchedulesResolverTestMixin, CacheIsolationTestCase, ModuleStoreTestCase): """ Tests the CourseUpdateResolver. """