summaryrefslogtreecommitdiff
path: root/tests/model_fields
diff options
context:
space:
mode:
Diffstat (limited to 'tests/model_fields')
-rw-r--r--tests/model_fields/tests.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/model_fields/tests.py b/tests/model_fields/tests.py
index a8291b6e71..80d35d18e1 100644
--- a/tests/model_fields/tests.py
+++ b/tests/model_fields/tests.py
@@ -445,13 +445,6 @@ class ChoicesTests(test.TestCase):
self.assertEqual(WhizIterEmpty(c=None).c, None) # Blank value
self.assertEqual(WhizIterEmpty(c='').c, '') # Empty value
- def test_charfield_get_choices_with_blank_iterator(self):
- """
- Check that get_choices works with an empty Iterator
- """
- f = models.CharField(choices=(x for x in []))
- self.assertEqual(f.get_choices(include_blank=True), [('', '---------')])
-
class SlugFieldTests(test.TestCase):
def test_slugfield_max_length(self):