mirror of
https://github.com/django/django.git
synced 2025-08-02 18:13:02 +00:00
Fixed #20548 -- Removed all PendingDeprecationWarnings from django test suite
This commit is contained in:
parent
5459795ef2
commit
46789e76c6
7 changed files with 29 additions and 16 deletions
|
@ -52,12 +52,15 @@ class PriceForm(forms.ModelForm):
|
|||
|
||||
class BookForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = Book
|
||||
model = Book
|
||||
fields = '__all__'
|
||||
|
||||
|
||||
class DerivedBookForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = DerivedBook
|
||||
fields = '__all__'
|
||||
|
||||
|
||||
|
||||
class ExplicitPKForm(forms.ModelForm):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue