Commit c750f08d by David Baumgold

Fix failing unit tests due to bad rebase

parent 3b0b1b36
......@@ -105,9 +105,9 @@ class CourseDetailsTestCase(CourseTestCase):
settings_details_url = reverse(
'settings_details',
kwargs={
'org': self.course_location.org,
'name': self.course_location.name,
'course': self.course_location.course
'org': self.course.location.org,
'name': self.course.location.name,
'course': self.course.location.course
}
)
......@@ -129,9 +129,9 @@ class CourseDetailsTestCase(CourseTestCase):
settings_details_url = reverse(
'settings_details',
kwargs={
'org': self.course_location.org,
'name': self.course_location.name,
'course': self.course_location.course
'org': self.course.location.org,
'name': self.course.location.name,
'course': self.course.location.course
}
)
......
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