From 34acd39e5d4dc1dd30ce75d512a9e7ffc0320a6b Mon Sep 17 00:00:00 2001 From: Karen Tracey Date: Tue, 28 Oct 2008 16:19:14 +0000 Subject: [PATCH] Fixed #9039 take 2 -- Modified the new tests added in [9239] so they pass on Oracle. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9288 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/model_forms/models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/modeltests/model_forms/models.py b/tests/modeltests/model_forms/models.py index 96b92a3233..0df21b6aa2 100644 --- a/tests/modeltests/model_forms/models.py +++ b/tests/modeltests/model_forms/models.py @@ -1232,8 +1232,6 @@ True >>> form = BookForm({'title': 'I May Be Wrong But I Doubt It'}) >>> form.is_valid() True ->>> form.save() - # Choices on CharField and IntegerField >>> class ArticleForm(ModelForm):