From 026501aec93ba35cf3bbe45f0f8bd5d21d89de1a Mon Sep 17 00:00:00 2001 From: Chris Rodriguez Date: Wed, 18 Mar 2015 14:21:21 -0400 Subject: [PATCH] Fix --- openedx/core/djangoapps/user_api/tests/test_views.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/openedx/core/djangoapps/user_api/tests/test_views.py b/openedx/core/djangoapps/user_api/tests/test_views.py index a65af054e3..0c3627ae60 100644 --- a/openedx/core/djangoapps/user_api/tests/test_views.py +++ b/openedx/core/djangoapps/user_api/tests/test_views.py @@ -878,8 +878,10 @@ class RegistrationViewTest(ApiTestCase): u"required": True, u"label": u"Password", u"restrictions": { - 'min_length': account_api.PASSWORD_MIN_LENGTH, - 'max_length': account_api.PASSWORD_MAX_LENGTH + 'min_length': PASSWORD_MIN_LENGTH, + 'max_length': PASSWORD_MAX_LENGTH + # 'min_length': account_api.PASSWORD_MIN_LENGTH, + # 'max_length': account_api.PASSWORD_MAX_LENGTH }, } )