Author: russellm Date: 2010-09-27 23:49:37 -0500 (Mon, 27 Sep 2010) New Revision: 13924
Modified: django/branches/releases/1.2.X/tests/regressiontests/custom_columns_regress/tests.py Log: [1.2.X] 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. Backport of r13923 from trunk. Modified: django/branches/releases/1.2.X/tests/regressiontests/custom_columns_regress/tests.py =================================================================== --- django/branches/releases/1.2.X/tests/regressiontests/custom_columns_regress/tests.py 2010-09-28 04:48:43 UTC (rev 13923) +++ django/branches/releases/1.2.X/tests/regressiontests/custom_columns_regress/tests.py 2010-09-28 04:49:37 UTC (rev 13924) @@ -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.