[1.0.X] Fixed #9039 take 2 -- Modified the new tests added in [9240] so they pass on Oracle.

Backport of [9288] from trunk, also updated svnmerge.py metadata.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9290 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Karen Tracey 2008-10-28 16:30:19 +00:00
parent 98b1b0794c
commit a8a07c2057
1 changed files with 0 additions and 2 deletions

View File

@ -1232,8 +1232,6 @@ True
>>> form = BookForm({'title': 'I May Be Wrong But I Doubt It'})
>>> form.is_valid()
True
>>> form.save()
<Book: Book object>
# Choices on CharField and IntegerField
>>> class ArticleForm(ModelForm):