From ef5c23c59c7c040447e869916ed0421bbd82f8a8 Mon Sep 17 00:00:00 2001
From: Diana Huang <dkh@edx.org>
Date: Thu, 11 May 2017 14:16:26 -0400
Subject: [PATCH] Fix test to use the start instead of due date.

---
 .../course_experience/tests/views/test_course_outline.py      | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/openedx/features/course_experience/tests/views/test_course_outline.py b/openedx/features/course_experience/tests/views/test_course_outline.py
index d48e025a8e1..8e518bb621b 100644
--- a/openedx/features/course_experience/tests/views/test_course_outline.py
+++ b/openedx/features/course_experience/tests/views/test_course_outline.py
@@ -297,8 +297,6 @@ class TestCourseOutlinePreview(SharedModuleStoreTestCase):
         self.assertEqual(response.status_code, 200)
         return response
 
-    # TODO: LEARNER-837: Due 6/4/2017. Remove skip.
-    @skip("skipping test")
     def test_preview(self):
         """
         Verify the behavior of preview for the course outline.
@@ -322,7 +320,7 @@ class TestCourseOutlinePreview(SharedModuleStoreTestCase):
                 category='chapter',
                 parent_location=course.location,
                 display_name='Future Chapter',
-                due=future_date,
+                start=future_date,
             )
             sequential = ItemFactory.create(category='sequential', parent_location=chapter.location)
             ItemFactory.create(category='vertical', parent_location=sequential.location)
-- 
GitLab