Commit cefe0daa by Tasawer

Updating validation error message on signup page.

ECOM-1956
parent 81af277d
...@@ -108,7 +108,7 @@ class AccountCreationForm(forms.Form): ...@@ -108,7 +108,7 @@ class AccountCreationForm(forms.Form):
max_length=30, max_length=30,
error_messages={ error_messages={
"required": _USERNAME_TOO_SHORT_MSG, "required": _USERNAME_TOO_SHORT_MSG,
"invalid": _("Username should only consist of A-Z and 0-9, with no spaces."), "invalid": _("Usernames must contain only letters, numbers, underscores (_), and hyphens (-)."),
"min_length": _USERNAME_TOO_SHORT_MSG, "min_length": _USERNAME_TOO_SHORT_MSG,
"max_length": _("Username cannot be more than %(limit_value)s characters long"), "max_length": _("Username cannot be more than %(limit_value)s characters long"),
} }
......
...@@ -310,7 +310,7 @@ class TestCreateAccountValidation(TestCase): ...@@ -310,7 +310,7 @@ class TestCreateAccountValidation(TestCase):
# Invalid # Invalid
params["username"] = "invalid username" params["username"] = "invalid username"
assert_username_error("Username should only consist of A-Z and 0-9, with no spaces.") assert_username_error("Usernames must contain only letters, numbers, underscores (_), and hyphens (-).")
def test_email(self): def test_email(self):
params = dict(self.minimal_params) params = dict(self.minimal_params)
......
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