Commit bbc5d4ff by Jesse Zoldak

Skip test that had a hardcoded date expectation MA-1038

parent cf24d4d7
...@@ -12,6 +12,7 @@ Test utilities for mobile API tests: ...@@ -12,6 +12,7 @@ Test utilities for mobile API tests:
# pylint: disable=no-member # pylint: disable=no-member
import ddt import ddt
from mock import patch from mock import patch
from unittest import skip
from django.core.urlresolvers import reverse from django.core.urlresolvers import reverse
...@@ -159,6 +160,7 @@ class MobileCourseAccessTestMixin(MobileAPIMilestonesMixin): ...@@ -159,6 +160,7 @@ class MobileCourseAccessTestMixin(MobileAPIMilestonesMixin):
response = self.api_response(expected_response_code=None, course_id=non_existent_course_id) response = self.api_response(expected_response_code=None, course_id=non_existent_course_id)
self.verify_failure(response) # allow subclasses to override verification self.verify_failure(response) # allow subclasses to override verification
@skip # TODO fix this, see MA-1038
@patch.dict('django.conf.settings.FEATURES', {'DISABLE_START_DATES': False}) @patch.dict('django.conf.settings.FEATURES', {'DISABLE_START_DATES': False})
def test_unreleased_course(self): def test_unreleased_course(self):
self.init_course_access() self.init_course_access()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment