From a6114e1a1442e9d87c3fdb073a34b75092794d21 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Mon, 21 Feb 2011 22:56:01 +0000 Subject: [PATCH] [1.2.X] Fixed error that was introduced in [15601] causing lots of test failures on 1.2.X In 1.2.X and earlier, the test client adds the 'template' attribute to responses, while in trunk it adds 'templates', hence the confusion. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15622 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/test/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/test/client.py b/django/test/client.py index 7047c5e8fa..a57793a2f6 100644 --- a/django/test/client.py +++ b/django/test/client.py @@ -97,7 +97,7 @@ def store_rendered_templates(store, signal, sender, template, context, **kwargs) The context is copied so that it is an accurate representation at the time of rendering. """ - store.setdefault('templates', []).append(template) + store.setdefault('template', []).append(template) store.setdefault('context', ContextList()).append(copy(context)) def encode_multipart(boundary, data):