From efa27fc86cff473c5ca5c0d48bcd264c99d9fd47 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 28 Sep 2010 08:29:30 +0000 Subject: [1.2.X] A few test optimizations; using native unittest where no Django-specific TestCase features are required. Backport of r13935 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13943 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/utils/html.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/regressiontests/utils/html.py') diff --git a/tests/regressiontests/utils/html.py b/tests/regressiontests/utils/html.py index 61ca6f4c53..a9b0d337f2 100644 --- a/tests/regressiontests/utils/html.py +++ b/tests/regressiontests/utils/html.py @@ -1,8 +1,8 @@ -from django.test import TestCase +import unittest from django.utils import html -class TestUtilsHtml(TestCase): +class TestUtilsHtml(unittest.TestCase): def check_output(self, function, value, output=None): """ -- cgit v1.3