summaryrefslogtreecommitdiff
path: root/django/test/utils.py
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-06-17 10:25:48 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-06-17 10:25:48 +0000
commit2126d41aba06b50a288cc6a516d4531ced998822 (patch)
tree2ed0e56153471e6076903c99fda834a5f78dd364 /django/test/utils.py
parent1bfcfe615c65565da5009a205aecff394217717c (diff)
unicode: Render templates as unicode objects and only convert them to
bytestrings as part of HttpRespnose and other output paths. git-svn-id: http://code.djangoproject.com/svn/django/branches/unicode@5487 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/test/utils.py')
-rw-r--r--django/test/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/utils.py b/django/test/utils.py
index b0f4a8e53d..a33395a6d8 100644
--- a/django/test/utils.py
+++ b/django/test/utils.py
@@ -10,7 +10,7 @@ from django.template import Template
# the test database.
TEST_DATABASE_PREFIX = 'test_'
-def instrumented_test_render(self, context, unused=None):
+def instrumented_test_render(self, context):
"""
An instrumented Template render method, providing a signal
that can be intercepted by the test system Client