summaryrefslogtreecommitdiff
path: root/tests/regressiontests/utils/tests.py
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2009-11-01 04:54:56 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2009-11-01 04:54:56 +0000
commite109de3b7e7e0d7ea8f600c21811eef867a3ffd3 (patch)
tree46eded4abe4f89d2f5b1e1f7de4049673d897362 /tests/regressiontests/utils/tests.py
parent801a8925fa3462a45353e4924cf11e947532fa3a (diff)
[1.1.X] Fixed #12123 -- Updated the utils.dateformat test to be a unittest too, due to a dependency on the old dateformat test.
Backport of r11695 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11696 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/utils/tests.py')
-rw-r--r--tests/regressiontests/utils/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/regressiontests/utils/tests.py b/tests/regressiontests/utils/tests.py
index c34dc96f88..a7a6e4c3a1 100644
--- a/tests/regressiontests/utils/tests.py
+++ b/tests/regressiontests/utils/tests.py
@@ -24,10 +24,11 @@ except NameError:
__test__ = {
'timesince': timesince,
'datastructures': datastructures,
- 'dateformat': dateformat,
'itercompat': itercompat,
}
+from dateformat import *
+
class TestUtilsHtml(TestCase):
def check_output(self, function, value, output=None):