Commit ca7db155 authored by Jacob Kaplan-Moss's avatar Jacob Kaplan-Moss
Browse files

Fixed #8763: added an explicit ordering to the generic_relations test so that...

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
parent d5cc16b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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