Changes between Initial Version and Version 2 of Ticket #17980
- Timestamp:
- Mar 26, 2012, 4:33:01 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17980
- Property Component Testing framework → contrib.auth
- Property Keywords tests added
- Property Triage Stage Unreviewed → Accepted
-
Ticket #17980 – Description
initial v2 3 3 When i18n is set to True and project language is not English, some of the default django tests do not pass (it worked fine in 1.3). I believe the reason is that the messages get translated and localized before the tests are run, which results in e.g.: 4 4 5 5 {{{ 6 6 ====================================================================== 7 7 FAIL: test_unusable_password (django.contrib.auth.tests.forms.PasswordResetFormTest) … … 38 38 39 39 ---------------------------------------------------------------------- 40 }}} 40 41 41 42 I believe the default django tests should not be run against the localized strings or am I missing something?