From abd2bdba14108c55ccbece67c7759e5c6f383ced Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 30 Jan 2006 03:41:18 +0000 Subject: [PATCH] magic-removal: Fixed bug in manipulators model unit tests git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2170 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/manipulators/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/modeltests/manipulators/models.py b/tests/modeltests/manipulators/models.py index 03128d5d71..902940ded6 100644 --- a/tests/modeltests/manipulators/models.py +++ b/tests/modeltests/manipulators/models.py @@ -34,7 +34,7 @@ API_TESTS = """ # Verify it worked. >>> list(Musician.objects) [Ella Fitzgerald] ->>> [m1] == Musician.objects.get_list() +>>> [m1] == list(Musician.objects) True # Attempt to add a Musician without a first_name.