Fixed #12764: Avoid exceeding psycopg1 limits in the views tests.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12832 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Karen Tracey 2010-03-22 13:22:24 +00:00
parent 9df71371c2
commit b2db1b24c6
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ class DefaultsTests(TestCase):
self.assertEquals(response.status_code, 404)
def test_shortcut_bad_pk(self):
short_url = '/views/shortcut/%s/%s/' % (ContentType.objects.get_for_model(Author).id, '4242424242')
short_url = '/views/shortcut/%s/%s/' % (ContentType.objects.get_for_model(Author).id, '42424242')
response = self.client.get(short_url)
self.assertEquals(response.status_code, 404)
@ -43,7 +43,7 @@ class DefaultsTests(TestCase):
def test_bad_content_type(self):
an_author = Author.objects.all()[0]
short_url = '/views/shortcut/%s/%s/' % (4242424242, an_author.pk)
short_url = '/views/shortcut/%s/%s/' % (42424242, an_author.pk)
response = self.client.get(short_url)
self.assertEquals(response.status_code, 404)