From 4747fe27a0bf1bfcba52f86c47c1d96a1b5c3890 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 28 Sep 2010 04:48:43 +0000 Subject: [PATCH] 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. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13923 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/custom_columns_regress/tests.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/regressiontests/custom_columns_regress/tests.py b/tests/regressiontests/custom_columns_regress/tests.py index 6f6c4ecf94..0587ab7070 100644 --- a/tests/regressiontests/custom_columns_regress/tests.py +++ b/tests/regressiontests/custom_columns_regress/tests.py @@ -22,8 +22,6 @@ class CustomColumnRegression(TestCase): 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]