Fixed a deprecation warning in a selenium test.
This commit is contained in:
parent
7557207983
commit
9b471a8fe3
|
@ -6,3 +6,4 @@ from .models import Article
|
||||||
class ArticleFormView(UpdateView):
|
class ArticleFormView(UpdateView):
|
||||||
model = Article
|
model = Article
|
||||||
success_url = '/'
|
success_url = '/'
|
||||||
|
fields = '__all__'
|
||||||
|
|
Loading…
Reference in New Issue