Commit 026501ae by Chris Rodriguez

Fix

parent 5ae7cc7e
...@@ -878,8 +878,10 @@ class RegistrationViewTest(ApiTestCase): ...@@ -878,8 +878,10 @@ class RegistrationViewTest(ApiTestCase):
u"required": True, u"required": True,
u"label": u"Password", u"label": u"Password",
u"restrictions": { u"restrictions": {
'min_length': account_api.PASSWORD_MIN_LENGTH, 'min_length': PASSWORD_MIN_LENGTH,
'max_length': account_api.PASSWORD_MAX_LENGTH 'max_length': PASSWORD_MAX_LENGTH
# 'min_length': account_api.PASSWORD_MIN_LENGTH,
# 'max_length': account_api.PASSWORD_MAX_LENGTH
}, },
} }
) )
......
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