From bcba29fcd63de3678b1abe36826e93d993e57171 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 28 Oct 2006 20:59:23 +0000 Subject: [PATCH] Changed forms unit tests to reflect the fact that render() does not use the to_python() value of data git-svn-id: http://code.djangoproject.com/svn/django/trunk@3946 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/forms/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/regressiontests/forms/tests.py b/tests/regressiontests/forms/tests.py index 80c8847986f..c4743a78a6a 100644 --- a/tests/regressiontests/forms/tests.py +++ b/tests/regressiontests/forms/tests.py @@ -389,12 +389,12 @@ u'' >>> print p['last_name'] >>> print p['birthday'] - + >>> for boundfield in p: ... print boundfield - + >>> p = Person({'last_name': u'Lennon'}) >>> p.errors()