mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed an assumed ordering in the queries regression tests by making it explicit.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11474 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -67,6 +67,9 @@ class Author(models.Model): | ||||
|     num = models.IntegerField(unique=True) | ||||
|     extra = models.ForeignKey(ExtraInfo) | ||||
|  | ||||
|     class Meta: | ||||
|         ordering = ['name'] | ||||
|  | ||||
|     def __unicode__(self): | ||||
|         return self.name | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user