Commit 12eba9ef authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Removed some model saves from [8102] which were causing test failures under...

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
parent 830b7501
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -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''