Author: russellm Date: 2010-09-27 23:48:43 -0500 (Mon, 27 Sep 2010) New Revision: 13923
Modified: django/trunk/tests/regressiontests/custom_columns_regress/tests.py Log: Removed a test assertion that depended on primary key ordering. The test doesn't validate anything significant, and fails under Postgres. Thanks to Tobias McNulty and the magical Caktus buildbot for pointing out the problem. Modified: django/trunk/tests/regressiontests/custom_columns_regress/tests.py =================================================================== --- django/trunk/tests/regressiontests/custom_columns_regress/tests.py 2010-09-28 04:35:50 UTC (rev 13922) +++ django/trunk/tests/regressiontests/custom_columns_regress/tests.py 2010-09-28 04:48:43 UTC (rev 13923) @@ -22,8 +22,6 @@ self.authors = [self.a1, self.a2] def test_basic_creation(self): - self.assertEqual(self.a1.Author_ID, 1) - art = Article(headline='Django lets you build web apps easily', primary_author=self.a1) art.save() art.authors = [self.a1, self.a2] -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-upda...@googlegroups.com. To unsubscribe from this group, send email to django-updates+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.