Changeset 6660
- Timestamp:
- 11/09/07 13:35:56 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/modeltests/model_forms/models.py
r6250 r6660 518 518 ValidationError: [u'Enter a list of values.'] 519 519 520 # Add a Category object *after* the Model ChoiceField has already been520 # Add a Category object *after* the ModelMultipleChoiceField has already been 521 521 # instantiated. This proves clean() checks the database during clean() rather 522 522 # than caching it at time of instantiation. … … 526 526 [<Category: Sixth>] 527 527 528 # Delete a Category object *after* the Model ChoiceField has already been528 # Delete a Category object *after* the ModelMultipleChoiceField has already been 529 529 # instantiated. This proves clean() checks the database during clean() rather 530 530 # than caching it at time of instantiation.
