Skip to content
Snippets Groups Projects
Commit c750f08d authored by David Baumgold's avatar David Baumgold
Browse files

Fix failing unit tests due to bad rebase

parent 3b0b1b36
No related merge requests found
......@@ -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
}
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment