From cb0624bfa1a69fd919345f2716d21c53c6738787 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 21 Mar 2015 19:24:56 -0400 Subject: [PATCH] Correct parent references in one test. --- lms/djangoapps/instructor_task/tests/test_tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/djangoapps/instructor_task/tests/test_tasks.py b/lms/djangoapps/instructor_task/tests/test_tasks.py index 7d5448ee1d..2ec7ef7ec0 100644 --- a/lms/djangoapps/instructor_task/tests/test_tasks.py +++ b/lms/djangoapps/instructor_task/tests/test_tasks.py @@ -40,10 +40,10 @@ class TestTaskFailure(Exception): class TestInstructorTasks(InstructorTaskModuleTestCase): def setUp(self): - super(InstructorTaskModuleTestCase, self).setUp() + super(TestInstructorTasks, self).setUp() self.initialize_course() self.instructor = self.create_instructor('instructor') - self.location = InstructorTaskModuleTestCase.problem_location(PROBLEM_URL_NAME) + self.location = self.problem_location(PROBLEM_URL_NAME) def _create_input_entry(self, student_ident=None, use_problem_url=True, course_id=None): """Creates a InstructorTask entry for testing."""