diff --git a/tests/regressiontests/forms/regressions.py b/tests/regressiontests/forms/regressions.py index caa0f68741..8cf699da33 100644 --- a/tests/regressiontests/forms/regressions.py +++ b/tests/regressiontests/forms/regressions.py @@ -23,10 +23,16 @@ There were some problems with form translations in #3600 >>> print f.as_p()
+Translations are done at rendering time, so multi-lingual apps can define forms +early and still send back the right translation. + # XFAIL # >>> activate('de') # >>> print f.as_p() #
+# >>> activate('pl') +# >>> f.as_p() +# u'
' # >>> deactivate() Unicode decoding problems...