summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-07-13 13:15:28 -0400
committerTim Graham <timograham@gmail.com>2013-07-13 13:22:00 -0400
commit26b88e7658e7be52de3c72b76ec64b3ce92ceda0 (patch)
tree4561ef38f4f8e9b1a04b044ff0e4365eb0124d96 /tests
parentdb33b25e8617185acbadb4ff04eaa4c37ae67dd6 (diff)
[1.6.x] Fixed a deprecation warning in a selenium test.
Backport of 9b471a8fe3 from master
Diffstat (limited to 'tests')
-rw-r--r--tests/forms_tests/views.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/forms_tests/views.py b/tests/forms_tests/views.py
index 4bf384363c..2081e0af14 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__'