Fixed #12590. Changed an expression in the validators tests to work correctly with python 2.4. Thanks, ramiro.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12270 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Joseph Kocherhans 2010-01-21 03:02:13 +00:00
parent 408d431029
commit 86f283d4ca
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ TEST_DATA = (
) )
def create_simple_test_method(validator, expected, value, num): def create_simple_test_method(validator, expected, value, num):
if isinstance(expected, type) and issubclass(expected, Exception): if expected is not None and issubclass(expected, Exception):
test_mask = 'test_%s_raises_error_%d' test_mask = 'test_%s_raises_error_%d'
def test_func(self): def test_func(self):
self.assertRaises(expected, validator, value) self.assertRaises(expected, validator, value)