Author: mtredinnick Date: 2008-08-24 12:54:51 -0500 (Sun, 24 Aug 2008) New Revision: 8521
Modified: django/trunk/tests/regressiontests/m2m_through_regress/models.py Log: Added a test to show that [8472] also fixed #8254. Modified: django/trunk/tests/regressiontests/m2m_through_regress/models.py =================================================================== --- django/trunk/tests/regressiontests/m2m_through_regress/models.py 2008-08-24 09:25:19 UTC (rev 8520) +++ django/trunk/tests/regressiontests/m2m_through_regress/models.py 2008-08-24 17:54:51 UTC (rev 8521) @@ -172,4 +172,8 @@ >>> rock.members.filter(membership__price=50) [<Person: Jim>] +## Regression test for #8254 +>>> bob.group_set.filter(membership__price=50) +[<Group: Roll>] + """} --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
