Tweaked some `AutoField` tests to not raise wanings in Python>=2.6, where `BaseException.message` has been deprecated.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17045 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Julien Phalip 2011-10-28 04:11:41 +00:00
parent a693bbe0ac
commit b87114962f
2 changed files with 2 additions and 2 deletions

View File

@ -102,4 +102,4 @@ try:
auto2 = models.AutoField(primary_key=True) auto2 = models.AutoField(primary_key=True)
except AssertionError, assertion_error: except AssertionError, assertion_error:
pass # Fail silently pass # Fail silently
assert assertion_error.message == u"A model can't have more than one AutoField." assert str(assertion_error) == u"A model can't have more than one AutoField."

View File

@ -17,7 +17,7 @@ class ValidationMessagesTest(TestCase):
try: try:
models.AutoField(primary_key=False) models.AutoField(primary_key=False)
except AssertionError, e: except AssertionError, e:
self.assertEqual(e.message, u"AutoFields must have primary_key=True.") self.assertEqual(str(e), "AutoFields must have primary_key=True.")
def test_integer_field_raises_error_message(self): def test_integer_field_raises_error_message(self):
f = models.IntegerField() f = models.IntegerField()