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):