Fixed the test added for #9005 to use the e.args[0] instead of e.message. Exceptions didn't have 'message' before Python 2.5, and it was deprecated as of Python 2.6. args[0] works without error or DeprecationWarning from Python 2.3 through 2.6.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10394 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Karen Tracey 2009-04-04 19:34:52 +00:00
parent 48e01d2b3d
commit 63143d5d9d
1 changed files with 9 additions and 9 deletions

View File

@ -154,7 +154,7 @@ class Templates(unittest.TestCase):
self.assertEqual(split, ["sometag", '_("Page not found")', 'value|yesno:_("yes,no")']) self.assertEqual(split, ["sometag", '_("Page not found")', 'value|yesno:_("yes,no")'])
def test_url_reverse_no_settings_module(self): def test_url_reverse_no_settings_module(self):
#Regression test for #9005 # Regression test for #9005
from django.template import Template, Context, TemplateSyntaxError from django.template import Template, Context, TemplateSyntaxError
old_settings_module = settings.SETTINGS_MODULE old_settings_module = settings.SETTINGS_MODULE
@ -168,9 +168,9 @@ class Templates(unittest.TestCase):
try: try:
rendered = t.render(c) rendered = t.render(c)
except TemplateSyntaxError, e: except TemplateSyntaxError, e:
#Assert that we are getting the template syntax error and not the # Assert that we are getting the template syntax error and not the
#string encoding error. # string encoding error.
self.assertEquals(e.message, "Caught an exception while rendering: Reverse for 'will_not_match' with arguments '()' and keyword arguments '{}' not found.") self.assertEquals(e.args[0], "Caught an exception while rendering: Reverse for 'will_not_match' with arguments '()' and keyword arguments '{}' not found.")
settings.SETTINGS_MODULE = old_settings_module settings.SETTINGS_MODULE = old_settings_module
settings.TEMPLATE_DEBUG = old_template_debug settings.TEMPLATE_DEBUG = old_template_debug