#6958 closed (fixed)
Some tests of newforms-admin depend on settings.LANGUAGE_CODE
Reported by: | Reza Mohammadi | Owned by: | Brian Rosner |
---|---|---|---|
Component: | Testing framework | Version: | newforms-admin |
Severity: | Keywords: | nfa-blocker | |
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
File "/usr/lib/python2.5/site-packages/django/contrib/auth/tests/__init__.py", line ?, in django.contrib.auth.tests.__test__.FORM_TESTS Failed example: form["username"].errors Expected: [u'This value must contain only letters, numbers and underscores.'] Got: [u'\u0627\u06cc\u0646 \u0645\u0642\u062f\u0627\u0631 \u0641\u0642\u0637 \u0628\u0627\u06cc\u062f \u062d\u0627\u0648\u06cc \u06a9\u0644\u0645\u0627\u062a\u060c \u0634\u0645\u0627\u0631\u0647 \u0647\u0627 \u0648 \u06cc\u0627 \u062e\u0637 \u0632\u06cc\u0631 \u0628\u0627\u0634\u062f.']
Is it ok to add these lines before tests dependent on LANGUAGE_CODE?
>>> import settings >>> settings.LANGUAGE_CODE = "en-us"
Change History (6)
comment:1 by , 17 years ago
Description: | modified (diff) |
---|
comment:2 by , 17 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
Triage Stage: | Unreviewed → Accepted |
Yes, indeed this needs to be fixed. The tests expect en-us
so they should be setup that way for those tests.
comment:3 by , 17 years ago
Keywords: | nfa-blocker added |
---|
comment:4 by , 17 years ago
Actually looking into this bit more, but not fully indicates this probably a result of #6774. Once that is fixed I suspect that will solve part of this. Will look more into this.
comment:5 by , 17 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
It appears this problem has gone away with r6774. The test framework actually correctly does this and now that the strings are properly marked for translation it works.
fixed description formatting.