diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-09-28 08:18:12 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-09-28 08:18:12 +0000 |
| commit | ec3ba39fdb9dd6b82fb790a7babff5d2c4630ad5 (patch) | |
| tree | 67120e9fa8d60ddabae5be4c8b9b86d1948067cd /tests/regressiontests/utils/html.py | |
| parent | 67df1a5002f4cb136403f124d3db52d6fc805eb8 (diff) | |
A few test optimizations; using native unittest where no Django-specific TestCase features are required.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13935 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/utils/html.py')
| -rw-r--r-- | tests/regressiontests/utils/html.py | 4 |
1 files changed, 2 insertions, 2 deletions
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): """ |
