From 9b471a8fe3649cacd43c56a0aef604bb4bd8a4f5 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 13 Jul 2013 13:15:28 -0400 Subject: [PATCH] Fixed a deprecation warning in a selenium test. --- tests/forms_tests/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/forms_tests/views.py b/tests/forms_tests/views.py index 4bf384363c3..2081e0af143 100644 --- a/tests/forms_tests/views.py +++ b/tests/forms_tests/views.py @@ -6,3 +6,4 @@ from .models import Article class ArticleFormView(UpdateView): model = Article success_url = '/' + fields = '__all__'