We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d01984 commit 5a2ea61Copy full SHA for 5a2ea61
1 file changed
openedx/core/djangoapps/user_authn/views/tests/test_auto_auth.py
@@ -54,8 +54,8 @@ def setUp(self):
54
super().setUp()
55
self.url = '/auto_auth'
56
self.client = Client()
57
- self.course_key = CourseLocator("edX", "Test101", "2014_Spring")
58
- CourseOverviewFactory.create(id=self.course_key)
+ CourseOverviewFactory.create(id=CourseLocator.from_string(self.COURSE_ID_MONGO))
+ CourseOverviewFactory.create(id=CourseLocator.from_string(self.COURSE_ID_SPLIT))
59
60
def test_create_user(self):
61
"""
0 commit comments