Removed some model saves from [8102] which were causing test failures under Postgres. Thanks to Ramiro Morales for the report (via IRC).

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8104 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2008-07-27 13:55:35 +00:00
parent 830b750131
commit 12eba9efc1
1 changed files with 0 additions and 4 deletions

View File

@ -49,25 +49,21 @@ u'First'
# Test a top level value
>>> w.c = 0
>>> w.save()
>>> w.get_c_display()
u'Other'
# Test an invalid data value
>>> w.c = 9
>>> w.save()
>>> w.get_c_display()
9
# Test a blank data value
>>> w.c = None
>>> w.save()
>>> print w.get_c_display()
None
# Test an empty data value
>>> w.c = ''
>>> w.save()
>>> w.get_c_display()
u''