From 214c79219e99fb008eb9b3d1323259da4c845145 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 24 Mar 2009 11:35:48 +0000 Subject: [PATCH] Fixed #10589 -- Removed duplicated model definition in null_fk_ordering regression test. Thanks to Julien Phalip for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10143 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/null_fk_ordering/models.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/regressiontests/null_fk_ordering/models.py b/tests/regressiontests/null_fk_ordering/models.py index 8c79e81f17..dd81706dcd 100644 --- a/tests/regressiontests/null_fk_ordering/models.py +++ b/tests/regressiontests/null_fk_ordering/models.py @@ -48,15 +48,6 @@ class Comment(models.Model): def __unicode__(self): return self.comment_text -class Comment(models.Model): - post = models.ForeignKey(Post, null=True) - comment_text = models.CharField(max_length=250) - - class Meta: - ordering = ['post__forum__system_info__system_name', 'comment_text'] - - def __unicode__(self): - return self.comment_text __test__ = {'API_TESTS': """ # Regression test for #7512 -- ordering across nullable Foreign Keys shouldn't