From d121e4a4460d872a5f8e276206b5f4036ca6db28 Mon Sep 17 00:00:00 2001 From: Brian Rosner Date: Mon, 5 May 2008 18:50:03 +0000 Subject: [PATCH] newforms-admin: Added a newline between expected output and comments to let the tests pass again. git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7518 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/forms/widgets.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/regressiontests/forms/widgets.py b/tests/regressiontests/forms/widgets.py index 3ebf0b5a2f..2734efc274 100644 --- a/tests/regressiontests/forms/widgets.py +++ b/tests/regressiontests/forms/widgets.py @@ -963,15 +963,19 @@ u'
< u'
' >>> w = MyMultiWidget(widgets=(TextInput(), TextInput())) + # test with no initial data >>> w._has_changed(None, [u'john', u'lennon']) True + # test when the data is the same as initial >>> w._has_changed(u'john__lennon', [u'john', u'lennon']) False + # test when the first widget's data has changed >>> w._has_changed(u'john__lennon', [u'alfred', u'lennon']) True + # test when the last widget's data has changed. this ensures that it is not # short circuiting while testing the widgets. >>> w._has_changed(u'john__lennon', [u'john', u'denver'])