diff options
| author | Tom Christie | 2014-11-06 10:34:59 +0000 | 
|---|---|---|
| committer | Tom Christie | 2014-11-06 10:34:59 +0000 | 
| commit | ed541864e637681e1aca3a808be1f26202b4c271 (patch) | |
| tree | 1265e7355052b4c3dc78f0ecef16aad5540b5437 /tests/test_fields.py | |
| parent | 73daf407150b4d0c456b529c4d9bba0e035fc370 (diff) | |
| download | django-rest-framework-ed541864e637681e1aca3a808be1f26202b4c271.tar.bz2 | |
Support for bulk create. Closes #1965.
Diffstat (limited to 'tests/test_fields.py')
| -rw-r--r-- | tests/test_fields.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tests/test_fields.py b/tests/test_fields.py index 96d09900..5db381ac 100644 --- a/tests/test_fields.py +++ b/tests/test_fields.py @@ -859,7 +859,7 @@ class TestMultipleChoiceField(FieldValues):          ('aircon', 'manual'): set(['aircon', 'manual']),      }      invalid_inputs = { -        'abc': ['Expected a list of items but got type `str`'], +        'abc': ['Expected a list of items but got type `str`.'],          ('aircon', 'incorrect'): ['`incorrect` is not a valid choice.']      }      outputs = [ | 
