mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 17:47:04 +03:00
Fixed suggestion for format in test renderer
Rendered would suggest using format='JSON' when the right argument is format='json'.
This commit is contained in:
parent
e83175323b
commit
fcc0a70f7c
|
@ -780,7 +780,7 @@ class MultiPartRenderer(BaseRenderer):
|
||||||
assert not isinstance(value, dict), (
|
assert not isinstance(value, dict), (
|
||||||
"Test data contained a dictionary value for key '%s', "
|
"Test data contained a dictionary value for key '%s', "
|
||||||
"but multipart uploads do not support nested data. "
|
"but multipart uploads do not support nested data. "
|
||||||
"You may want to consider using format='JSON' in this "
|
"You may want to consider using format='json' in this "
|
||||||
"test case." % key
|
"test case." % key
|
||||||
)
|
)
|
||||||
return encode_multipart(self.BOUNDARY, data)
|
return encode_multipart(self.BOUNDARY, data)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user