From d7d1f03674636786fe054523bc3e4916781a6e34 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Thu, 7 Dec 2017 09:44:31 +0100 Subject: [PATCH] modified new user registration test to account for new fields --- rowers/tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rowers/tests.py b/rowers/tests.py index fb8a67fd..ce4ca872 100644 --- a/rowers/tests.py +++ b/rowers/tests.py @@ -307,6 +307,9 @@ class NewUserRegistrationTest(TestCase): 'password1':'aapindewei2', 'password2':'aapindewei2', 'tos':True, + 'weightcategory':'hwt', + 'sex':'male', + 'birthdate':datetime.datetime(year=1970,month=4,day=2) } form = RegistrationFormUniqueEmail(form_data)