From 1d9336bb6c59b9b75c14674c41cc831af8b28429 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 11 Oct 2010 03:40:26 +0000 Subject: [PATCH] [1.2.X] 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. Backport of [14136]. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14137 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/sitemaps/tests/basic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 )