summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Rivera <rivera@joel.mx>2016-03-19 14:23:39 -0600
committerJoel Rivera <rivera@joel.mx>2016-03-19 14:23:39 -0600
commitc35902e64467db12d17e990b727e92b13a699eca (patch)
tree920705cda27976d508f2f9a75ddd6c63dad43d80
parentba826a9524579cd49d1c8bf949b253c2c6aef400 (diff)
downloadcherrypy-c35902e64467db12d17e990b727e92b13a699eca.tar.gz
Remove literal unicode to be able to execute the test_iterator.
-rw-r--r--cherrypy/test/test_iterator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/test/test_iterator.py b/cherrypy/test/test_iterator.py
index dcf4bc94..c09a7cf9 100644
--- a/cherrypy/test/test_iterator.py
+++ b/cherrypy/test/test_iterator.py
@@ -4,7 +4,7 @@ from cherrypy._cpcompat import unicodestr
class IteratorBase(object):
created = 0
- datachunk = u'butternut squash' * 256
+ datachunk = 'butternut squash' * 256
@classmethod
def incr(cls):