From aee55ce5249fdc822d6bd4ec5238a3154a217dcb Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sun, 27 Jul 2008 01:18:18 +0000 Subject: [PATCH] Changed one of the model_formsets tests to be immune to the differences in the natural collation ordering used by different databases (normally, this test would fail on PostgreSQL, but not because the code was incorrect). This is purely a test tweak. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8097 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/model_formsets/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/modeltests/model_formsets/models.py b/tests/modeltests/model_formsets/models.py index a8b0cdde5bdc2..c8d5c4bc425e5 100644 --- a/tests/modeltests/model_formsets/models.py +++ b/tests/modeltests/model_formsets/models.py @@ -20,7 +20,7 @@ class AuthorMeeting(models.Model): name = models.CharField(max_length=100) authors = models.ManyToManyField(Author) created = models.DateField(editable=False) - + def __unicode__(self): return self.name @@ -289,10 +289,10 @@ def __unicode__(self): As you can see, 'Le Spleen de Paris' is now a book belonging to Charles Baudelaire. ->>> for book in author.book_set.order_by('title'): +>>> for book in author.book_set.order_by('id'): ... print book.title -Le Spleen de Paris Les Fleurs du Mal +Le Spleen de Paris The save_as_new parameter lets you re-associate the data to a new instance. This is used in the admin for save_as functionality.