From cc40651f212404240cda0f897fc570e123e75009 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sat, 13 Feb 2010 11:59:09 +0000 Subject: [PATCH] Fixed #12825 -- Corrected a missing space in a test case error message. Thanks to timo for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12417 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/test/testcases.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/test/testcases.py b/django/test/testcases.py index 7ae1cbb4ec..2f8acad68c 100644 --- a/django/test/testcases.py +++ b/django/test/testcases.py @@ -397,7 +397,7 @@ class TransactionTestCase(unittest.TestCase): # Put context(s) into a list to simplify processing. contexts = to_list(response.context) if not contexts: - self.fail(msg_prefix + "Response did not use any contexts to" + self.fail(msg_prefix + "Response did not use any contexts to " "render the response") # Put error(s) into a list to simplify processing.