Django

Code

Changeset 6660

Show
Ignore:
Timestamp:
11/09/07 13:35:56 (8 months ago)
Author:
gwilson
Message:

Corrected a couple comments in model_forms tests.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/modeltests/model_forms/models.py

    r6250 r6660  
    518518ValidationError: [u'Enter a list of values.'] 
    519519 
    520 # Add a Category object *after* the ModelChoiceField has already been 
     520# Add a Category object *after* the ModelMultipleChoiceField has already been 
    521521# instantiated. This proves clean() checks the database during clean() rather 
    522522# than caching it at time of instantiation. 
     
    526526[<Category: Sixth>] 
    527527 
    528 # Delete a Category object *after* the ModelChoiceField has already been 
     528# Delete a Category object *after* the ModelMultipleChoiceField has already been 
    529529# instantiated. This proves clean() checks the database during clean() rather 
    530530# than caching it at time of instantiation.