Fixed #8763: added an explicit ordering to the generic_relations test so that the test results aren't dependant on database ordering.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8815 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
d5cc16b471
commit
ca7db155aa
|
@ -22,7 +22,7 @@ class TaggedItem(models.Model):
|
|||
content_object = generic.GenericForeignKey()
|
||||
|
||||
class Meta:
|
||||
ordering = ["tag"]
|
||||
ordering = ["tag", "-object_id"]
|
||||
|
||||
def __unicode__(self):
|
||||
return self.tag
|
||||
|
|
Loading…
Reference in New Issue