Django

Code

Changeset 2261

Show
Ignore:
Timestamp:
02/03/06 18:12:05 (3 years ago)
Author:
adrian
Message:

magic-removal: Fixed bug in m2m_multiple model unit tests. Down to 10 unit-test failures total

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/magic-removal/tests/modeltests/m2m_multiple/models.py

    r2256 r2261  
    4545>>> a1.primary_categories.add(c2, c3) 
    4646>>> a1.secondary_categories.add(c4) 
    47 True 
    4847 
    4948>>> a2 = Article(headline='Area man runs', pub_date=datetime(2005, 11, 28)) 
     
    5150>>> a2.primary_categories.add(c1, c2) 
    5251>>> a2.secondary_categories.add(c4) 
    53 True 
    5452 
    5553>>> a1.primary_categories.all()