summaryrefslogtreecommitdiff
path: root/tests/model_forms/tests.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-07-01 09:36:31 -0400
committerTim Graham <timograham@gmail.com>2013-07-01 09:38:29 -0400
commit4c1029971e810cde32ee4cd489627239b9b1b6ed (patch)
treebb6db847217e8c20981cb381b079806c0e9b3b11 /tests/model_forms/tests.py
parent3c51962cabc9537221b86c667aac5ffaa1469660 (diff)
[1.6.x] Fixed a couple form/formset deprecation warnings in tests.
Backport of a521d10322 from master.
Diffstat (limited to 'tests/model_forms/tests.py')
-rw-r--r--tests/model_forms/tests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py
index 39be824798..19f0216ec7 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