summaryrefslogtreecommitdiff
path: root/tests/model_forms
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model_forms')
-rw-r--r--tests/model_forms/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py
index 13b871372e..0d54cead70 100644
--- a/tests/model_forms/tests.py
+++ b/tests/model_forms/tests.py
@@ -2098,7 +2098,7 @@ class ModelMultipleChoiceFieldTests(TestCase):
[self.c1, self.c2],
)
with self.assertRaises(ValidationError):
- f.clean(["100"])
+ f.clean(["0"])
with self.assertRaises(ValidationError):
f.clean("hello")
with self.assertRaises(ValidationError):