Opened 16 years ago

Closed 16 years ago

Last modified 16 years ago

#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 Gary Wilson)

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 Gary Wilson, 16 years ago

Description: modified (diff)

fixed description formatting.

comment:2 by Brian Rosner, 16 years ago

Owner: changed from nobody to Brian Rosner
Status: newassigned
Triage Stage: UnreviewedAccepted

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 Brian Rosner, 16 years ago

Keywords: nfa-blocker added

comment:4 by Brian Rosner, 16 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 Brian Rosner, 16 years ago

Resolution: fixed
Status: assignedclosed

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.

comment:6 by Brian Rosner, 16 years ago

Err, correction: I meant r7449 not r6774 ;)

Note: See TracTickets for help on using tickets.
Back to Top