summaryrefslogtreecommitdiff
path: root/tests/regressiontests/admin_util/models.py
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-04-11 08:35:04 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-04-11 08:35:04 +0000
commitfaceca7075d72d55f0eebc586049fb634cd46129 (patch)
tree015620bcbd983347d0371e588402ea332b38be05 /tests/regressiontests/admin_util/models.py
parentf4c76fb60439de0730a9e991403668a1b46e0191 (diff)
Fixed #13301 -- Corrected problem with capitalization of changelist row headers in admin. Thanks to emyller for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12947 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/admin_util/models.py')
-rw-r--r--tests/regressiontests/admin_util/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/admin_util/models.py b/tests/regressiontests/admin_util/models.py
index e81f7bbc25..493e1271ad 100644
--- a/tests/regressiontests/admin_util/models.py
+++ b/tests/regressiontests/admin_util/models.py
@@ -16,7 +16,7 @@ class Article(models.Model):
def test_from_model_with_override(self):
return "nothing"
- test_from_model_with_override.short_description = "not what you expect"
+ test_from_model_with_override.short_description = "not What you Expect"
class Count(models.Model):
num = models.PositiveSmallIntegerField()