From 6bc74f06e284dd4be40833c4231449e6c5d23ed0 Mon Sep 17 00:00:00 2001 From: Karen Tracey Date: Sun, 12 Sep 2010 18:14:45 +0000 Subject: [PATCH] [1.2.X] Fix AdminDocsTest failure on 1.2.X branch by correcting the test to reference an app tag that actually exists in 1.2.X. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13764 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/admin_views/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/regressiontests/admin_views/tests.py b/tests/regressiontests/admin_views/tests.py index 374c2aa603..6a4d3975b5 100644 --- a/tests/regressiontests/admin_views/tests.py +++ b/tests/regressiontests/admin_views/tests.py @@ -2210,8 +2210,8 @@ try: self.assertContains(response, '
  • autoescape
  • ') # An app tag exists in both the index and detail - self.assertContains(response, '

    get_flatpages

    ') - self.assertContains(response, '
  • get_flatpages
  • ') + self.assertContains(response, '

    get_comment_count

    ') + self.assertContains(response, '
  • get_comment_count
  • ') # The admin list tag group exists self.assertContains(response, "

    admin_list

    ", count=2)