Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
cefe0daa
Commit
cefe0daa
authored
Aug 19, 2015
by
Tasawer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updating validation error message on signup page.
ECOM-1956
parent
81af277d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
common/djangoapps/student/forms.py
+1
-1
common/djangoapps/student/tests/test_create_account.py
+1
-1
No files found.
common/djangoapps/student/forms.py
View file @
cefe0daa
...
@@ -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"
:
_
(
"Username
s 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"
),
}
}
...
...
common/djangoapps/student/tests/test_create_account.py
View file @
cefe0daa
...
@@ -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
(
"Username
s 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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment