diff options
| author | François Freitag <mail@franek.fr> | 2020-02-12 14:48:49 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-04-28 10:49:00 +0200 |
| commit | 9ef4a18dbe71f538a9ef8c39111ae2f0b62eb90b (patch) | |
| tree | 0016b13a357af2f642483bdd168d6f83190f33bb /tests/forms_tests/field_tests/test_combofield.py | |
| parent | 2788de95e375cccd03a3dfd161fc92b7d6df6024 (diff) | |
Changed django.forms.ValidationError imports to django.core.exceptions.ValidationError.
Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
Diffstat (limited to 'tests/forms_tests/field_tests/test_combofield.py')
| -rw-r--r-- | tests/forms_tests/field_tests/test_combofield.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/forms_tests/field_tests/test_combofield.py b/tests/forms_tests/field_tests/test_combofield.py index b40e7ba885..481783fe2e 100644 --- a/tests/forms_tests/field_tests/test_combofield.py +++ b/tests/forms_tests/field_tests/test_combofield.py @@ -1,4 +1,5 @@ -from django.forms import CharField, ComboField, EmailField, ValidationError +from django.core.exceptions import ValidationError +from django.forms import CharField, ComboField, EmailField from django.test import SimpleTestCase |
