Upgrade pymongo

LMS-11437
This commit is contained in:
Don Mitchell
2014-09-18 10:04:31 -04:00
parent fc5148438d
commit b7b5400c3e
10 changed files with 26 additions and 23 deletions

View File

@@ -72,10 +72,10 @@ class CourseTestCase(ModuleStoreTestCase):
will be cleared out before each test case execution and deleted
afterwards.
"""
user_password = super(CourseTestCase, self).setUp()
self.user_password = super(CourseTestCase, self).setUp()
self.client = AjaxEnabledTestClient()
self.client.login(username=self.user.username, password=user_password)
self.client.login(username=self.user.username, password=self.user_password)
self.course = CourseFactory.create()