summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2009-03-31 16:07:07 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2009-03-31 16:07:07 +0000
commitb4f5655c8616664216dd5c495c33edc10a147655 (patch)
tree808a9868166024e6f01b589d0b49160ef8012c59 /tests
parent3a0950739bc0947c2ae336b54905361a73f2871d (diff)
Fixed #10553 -- Corrected several uses of `URLconf` in documentation and comments, according to the Django style guide. Based on patch from rduffield.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10256 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
-rw-r--r--tests/regressiontests/test_client_regress/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/test_client_regress/models.py b/tests/regressiontests/test_client_regress/models.py
index 71d6a149d0..90383dba84 100644
--- a/tests/regressiontests/test_client_regress/models.py
+++ b/tests/regressiontests/test_client_regress/models.py
@@ -444,7 +444,7 @@ class UrlconfSubstitutionTests(TestCase):
urls = 'regressiontests.test_client_regress.urls'
def test_urlconf_was_changed(self):
- "TestCase can enforce a custom URLConf on a per-test basis"
+ "TestCase can enforce a custom URLconf on a per-test basis"
url = reverse('arg_view', args=['somename'])
self.assertEquals(url, '/arg_view/somename/')