From b7ce6b03bbb23129880e7d01f845f25ec8af8c89 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Thu, 13 Jan 2011 23:19:10 +0000 Subject: [PATCH] Corrected hash in a formtools test to match current method, not Django 1.2 git-svn-id: http://code.djangoproject.com/svn/django/trunk@15199 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/formtools/tests/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/formtools/tests/__init__.py b/django/contrib/formtools/tests/__init__.py index 6a9737b038..4ad039a537 100644 --- a/django/contrib/formtools/tests/__init__.py +++ b/django/contrib/formtools/tests/__init__.py @@ -393,7 +393,7 @@ class WizardTests(TestCase): data = {"0-field": "test", "1-field": "test2", - "hash_0": "2fdbefd4c0cad51509478fbacddf8b13", + "hash_0": "7e9cea465f6a10a6fb47fcea65cb9a76350c9a5c", "wizard_step": "1"} wizard(DummyRequest(POST=data)) self.assertTrue(reached[0])