From 5e5be2c44caaae3192a9f8ae1ce0adc0da3d8c4d Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 11 Oct 2010 03:39:02 +0000 Subject: [PATCH] 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 --- 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 )