summaryrefslogtreecommitdiff
path: root/tests/model_fields/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model_fields/tests.py')
-rw-r--r--tests/model_fields/tests.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/model_fields/tests.py b/tests/model_fields/tests.py
index b27c07a92f..fa7436343a 100644
--- a/tests/model_fields/tests.py
+++ b/tests/model_fields/tests.py
@@ -391,7 +391,10 @@ class GetChoicesTests(SimpleTestCase):
def test_lazy_strings_not_evaluated(self):
lazy_func = lazy(lambda x: 0 / 0, int) # raises ZeroDivisionError if evaluated.
f = models.CharField(choices=[(lazy_func("group"), [("a", "A"), ("b", "B")])])
- self.assertEqual(f.get_choices(include_blank=True)[0], ("", "---------"))
+ self.assertEqual(
+ f.get_choices(include_blank=True)[0],
+ ("", models.utils.get_blank_choice_label()),
+ )
class GetChoicesOrderingTests(TestCase):