From 3c73a0e8d68a5a970973bd3a5691610b023e7741 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 4 Feb 2006 00:12:05 +0000 Subject: [PATCH] magic-removal: Fixed bug in m2m_multiple model unit tests. Down to 10 unit-test failures total git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2261 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/m2m_multiple/models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/modeltests/m2m_multiple/models.py b/tests/modeltests/m2m_multiple/models.py index 751a0a258f..3fec427c1d 100644 --- a/tests/modeltests/m2m_multiple/models.py +++ b/tests/modeltests/m2m_multiple/models.py @@ -44,13 +44,11 @@ API_TESTS = """ >>> a1.save() >>> a1.primary_categories.add(c2, c3) >>> a1.secondary_categories.add(c4) -True >>> a2 = Article(headline='Area man runs', pub_date=datetime(2005, 11, 28)) >>> a2.save() >>> a2.primary_categories.add(c1, c2) >>> a2.secondary_categories.add(c4) -True >>> a1.primary_categories.all() [Crime, News]