From 286698e8e5e08f3d74ee188ab2640564971069ce Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 26 Aug 2005 05:37:26 +0000 Subject: [PATCH] Removed 'this isn't yet supported' message from custom_pk unit test docstring -- it IS supported git-svn-id: http://code.djangoproject.com/svn/django/trunk@557 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/testapp/models/custom_pk.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/testapp/models/custom_pk.py b/tests/testapp/models/custom_pk.py index b7ebd61d4b..46c6cbfb09 100644 --- a/tests/testapp/models/custom_pk.py +++ b/tests/testapp/models/custom_pk.py @@ -3,9 +3,6 @@ By default, Django adds an ``"id"`` field to each model. But you can override this behavior by explicitly adding ``primary_key=True`` to a field. - -NOTE: This isn't yet supported. This model exists as a unit test that currently -fails. """ from django.core import meta