From 87a704cf50d4ac122b89a02f5a68f11ad5026524 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 25 Jun 2008 12:09:18 +0000 Subject: [PATCH] Fixed #7531 -- Modified the sites test so that user-provided initial data doesn't cause breakage when executed from within user applications. Thanks for the report, madkinder@gmail.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7738 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/sites/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/contrib/sites/tests.py b/django/contrib/sites/tests.py index d2ec331eca5f5..5c38ee1b6dae5 100644 --- a/django/contrib/sites/tests.py +++ b/django/contrib/sites/tests.py @@ -2,8 +2,8 @@ >>> # Make sure that get_current() does not return a deleted Site object. >>> from django.contrib.sites.models import Site >>> s = Site.objects.get_current() ->>> s - +>>> isinstance(s, Site) +True >>> s.delete() >>> Site.objects.get_current()