diff options
| author | Tim Graham <timograham@gmail.com> | 2013-07-01 09:36:31 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-07-01 09:36:31 -0400 |
| commit | a521d103227be4e5660cf7a66bf98003696aa781 (patch) | |
| tree | f2c78ff41cf617d37f22dc1de2bf7330007657e5 /tests/model_forms | |
| parent | a6a905c619e48bb3db4a5fbb09e5e03abb7ed0f6 (diff) | |
Fixed a couple form/formset deprecation warnings in tests.
Diffstat (limited to 'tests/model_forms')
| -rw-r--r-- | tests/model_forms/tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py index 9d71798b3d..09c62c5205 100644 --- a/tests/model_forms/tests.py +++ b/tests/model_forms/tests.py @@ -252,10 +252,12 @@ class StatusNoteCBM2mForm(forms.ModelForm): fields = '__all__' widgets = {'status': forms.CheckboxSelectMultiple} + class CustomErrorMessageForm(forms.ModelForm): name1 = forms.CharField(error_messages={'invalid': 'Form custom error message.'}) class Meta: + fields = '__all__' model = CustomErrorMessage |
