Merge pull request #7523 from edx/zub/bugfix/ecom-579-change-education-level-option-label
change education level option label to read "Associate" degree
This commit is contained in:
@@ -231,7 +231,7 @@ class UserProfile(models.Model):
|
||||
('p', ugettext_noop('Doctorate')),
|
||||
('m', ugettext_noop("Master's or professional degree")),
|
||||
('b', ugettext_noop("Bachelor's degree")),
|
||||
('a', ugettext_noop("Associate's degree")),
|
||||
('a', ugettext_noop("Associate degree")),
|
||||
('hs', ugettext_noop("Secondary/high school")),
|
||||
('jhs', ugettext_noop("Junior secondary/junior high/middle school")),
|
||||
('el', ugettext_noop("Elementary/primary school")),
|
||||
|
||||
@@ -52,7 +52,7 @@ class AccountView(APIView):
|
||||
* "p" signifying "Doctorate"
|
||||
* "m" signifying "Master's or professional degree"
|
||||
* "b" signifying "Bachelor's degree"
|
||||
* "a" signifying "Associate's degree"
|
||||
* "a" signifying "Associate degree"
|
||||
* "hs" signifying "Secondary/high school"
|
||||
* "jhs" signifying "Junior secondary/junior high/middle school"
|
||||
* "el" signifying "Elementary/primary school"
|
||||
|
||||
@@ -976,7 +976,7 @@ class RegistrationViewTest(ApiTestCase):
|
||||
{"value": "p", "name": "Doctorate"},
|
||||
{"value": "m", "name": "Master's or professional degree"},
|
||||
{"value": "b", "name": "Bachelor's degree"},
|
||||
{"value": "a", "name": "Associate's degree"},
|
||||
{"value": "a", "name": "Associate degree"},
|
||||
{"value": "hs", "name": "Secondary/high school"},
|
||||
{"value": "jhs", "name": "Junior secondary/junior high/middle school"},
|
||||
{"value": "el", "name": "Elementary/primary school"},
|
||||
|
||||
Reference in New Issue
Block a user