diff options
| author | Karen Tracey <kmtracey@gmail.com> | 2008-11-10 17:13:41 +0000 |
|---|---|---|
| committer | Karen Tracey <kmtracey@gmail.com> | 2008-11-10 17:13:41 +0000 |
| commit | 6ed91234e39370ba979df09686a301f014573508 (patch) | |
| tree | c2f1cc49035d76a85d5ea01a696da1376cb05bdb /tests | |
| parent | 7760ae754a8e88374af906b87babd6afd48677d6 (diff) | |
Fixed #8910 -- Added force_unicode during admin log message creation to avoid triggering a Python 2.3 bug. Thanks for the report joshg and patch nfg.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9383 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/regressiontests/admin_views/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/admin_views/tests.py b/tests/regressiontests/admin_views/tests.py index 4a568279e7..bf2c3f31a6 100644 --- a/tests/regressiontests/admin_views/tests.py +++ b/tests/regressiontests/admin_views/tests.py @@ -76,7 +76,7 @@ class AdminViewBasicTest(TestCase): "article_set-0-id": u"1", # there is no title in database, give one here or formset # will fail. - "article_set-0-title": u"Need a title.", + "article_set-0-title": u"Norske bostaver æøå skaper problemer", "article_set-0-content": u"<p>Middle content</p>", "article_set-0-date_0": u"2008-03-18", "article_set-0-date_1": u"11:54:58", |
