mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-07-28 17:09:59 +03:00
remove duplicate testcase
This commit is contained in:
parent
210fecb5e9
commit
6eb16481fa
|
@ -64,8 +64,6 @@ class TestFieldMapping(TestCase):
|
|||
{'items': {'enum': [1.1, 2.2], 'type': 'number'}, 'type': 'array'}),
|
||||
(serializers.ListField(child=serializers.ChoiceField(choices=[(True, 'true'), (False, 'false')])),
|
||||
{'items': {'enum': ['True', 'False'], 'type': 'string'}, 'type': 'array'}),
|
||||
(serializers.ListField(child=serializers.ChoiceField(choices=[(True, 'true'), (False, 'false')])),
|
||||
{'items': {'enum': ['True', 'False'], 'type': 'string'}, 'type': 'array'}),
|
||||
(serializers.ListField(child=serializers.ChoiceField(choices=[(uuid1, 'uuid1'), (uuid2, 'uuid2')])),
|
||||
{'items': {'enum': [uuid1, uuid2]}, 'type': 'array'}),
|
||||
(serializers.ListField(child=serializers.ChoiceField(choices=[(1, 'One'), ('a', 'Choice A')])),
|
||||
|
|
Loading…
Reference in New Issue
Block a user