diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-02-13 11:59:09 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-02-13 11:59:09 +0000 |
| commit | cc40651f212404240cda0f897fc570e123e75009 (patch) | |
| tree | dfc7499112091837f953362b9ca06949e2216602 /django/test/testcases.py | |
| parent | 02d40b93f826558c5ed299e502812ac88b7ede12 (diff) | |
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
Diffstat (limited to 'django/test/testcases.py')
| -rw-r--r-- | django/test/testcases.py | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
