Rewrote a test assertion so that it doesn't fail under Python 2.7. Thanks to Florian Apolloner for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14400 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2010-10-30 13:04:02 +00:00
parent fffbbe4062
commit 03b12ae2cf
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ class AssertNumQueriesTests(TestCase):
with self.assertRaises(AssertionError) as exc_info:
with self.assertNumQueries(2):
Person.objects.count()
self.assertEqual(str(exc_info.exception), "1 != 2 : 1 queries executed, 2 expected")
self.assertIn("1 queries executed, 2 expected", str(exc_info.exception))
with self.assertRaises(TypeError):
with self.assertNumQueries(4000):