From eb63c9fc1c2fc5feb4761d1ca8f19d73a31e1705 Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Sun, 10 Nov 2019 20:30:42 +0200 Subject: [PATCH] Fix signup JSON form ID --- webapp/tests/signup_fixture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/tests/signup_fixture.py b/webapp/tests/signup_fixture.py index b55a43c..dc3078c 100644 --- a/webapp/tests/signup_fixture.py +++ b/webapp/tests/signup_fixture.py @@ -26,6 +26,6 @@ def createSignupObject(form, answer): def createSignupJSON(form_id, answer): return { - "signupForm": form_id, + "signupForm_id": form_id, "answer": answer }