summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2010-10-11 03:39:02 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2010-10-11 03:39:02 +0000
commit5e5be2c44caaae3192a9f8ae1ce0adc0da3d8c4d (patch)
tree969450796b35e659e17269ca86b642c8b7611cca
parent548b6c7e691fc3a50072e9405d3b68d9e50ebd9f (diff)
Fixed #14279 -- Corrected a typo in the sitemaps tests (didn't affect the passage of the test). Thanks to jamesodo for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14136 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/sitemaps/tests/basic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/sitemaps/tests/basic.py b/django/contrib/sitemaps/tests/basic.py
index 552fb3ca60..9d514623e3 100644
--- a/django/contrib/sitemaps/tests/basic.py
+++ b/django/contrib/sitemaps/tests/basic.py
@@ -68,7 +68,7 @@ class SitemapTests(TestCase):
public.sites.add(settings.SITE_ID)
private = FlatPage.objects.create(
url=u'/private/',
- title=u'Public Page',
+ title=u'Private Page',
enable_comments=True,
registration_required=True
)