From 9a62a282d5b4b5fcb7782a787381a7bf77d92ed3 Mon Sep 17 00:00:00 2001
From: Bryan Brancotte <bryan.brancotte@pasteur.fr>
Date: Thu, 26 Sep 2019 16:27:47 +0200
Subject: [PATCH] preparing for next crispy form release

---
 tests/urls.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/urls.py b/tests/urls.py
index e0da59e..59f90fb 100644
--- a/tests/urls.py
+++ b/tests/urls.py
@@ -4,6 +4,7 @@ from django.http import HttpResponse
 from django.shortcuts import render
 from django.urls import path, include
 from django.views import View
+from crispy_forms.helper import FormHelper
 
 
 def blabla(request):
@@ -31,6 +32,8 @@ class FormExample(forms.Form):
         required=False,
         help_text="bla bla",
     )
+    helper = FormHelper()
+    helper.use_custom_control = False
 
 
 context = dict(
-- 
GitLab