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:
Jacob Kaplan-Moss 2008-09-01 21:16:17 +00:00
parent d5cc16b471
commit ca7db155aa
1 changed files with 1 additions and 1 deletions

View File

@ -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