aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Padilla2014-09-23 21:18:56 -0400
committerJosé Padilla2014-09-23 21:18:56 -0400
commit90139b3efc7da7a2c396882b6905291269387ace (patch)
tree835abc9d790cd7db044034d00809bfcf6836ac06
parente8c01ecdabe2abda48dd0cf298d4b6c743574449 (diff)
downloaddjango-rest-framework-90139b3efc7da7a2c396882b6905291269387ace.tar.bz2
Remove left unicode strings
-rw-r--r--tests/test_generics.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_generics.py b/tests/test_generics.py
index dd3bab18..97116349 100644
--- a/tests/test_generics.py
+++ b/tests/test_generics.py
@@ -708,10 +708,10 @@ class TestFilterBackendAppliedToViews(TestCase):
'actions': {
'POST': {
'field_b': {
- 'type': u'string',
+ 'type': 'string',
'required': True,
'read_only': False,
- 'label': u'field b',
+ 'label': 'field b',
'max_length': 100
}
}