summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjquast <contact@jeffquast.com>2014-03-16 20:55:32 -0700
committerjquast <contact@jeffquast.com>2014-03-16 20:55:32 -0700
commit20dfbd7ec54b3e4fb5c9ccb527d183bf2af559d0 (patch)
treecbc5e9deee0422523bea500cf23e071037bd88fa
parent652070633ee8b4e9ba4d8297e9be72d141d61ca4 (diff)
downloadpexpect-buildbot-changes.tar.gz
python 3.2 fixbuildbot-changes
-rwxr-xr-xtests/test_expect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_expect.py b/tests/test_expect.py
index c2e31b6..fc0fd7f 100755
--- a/tests/test_expect.py
+++ b/tests/test_expect.py
@@ -50,7 +50,7 @@ def hex_diff(left, right):
diff = ['< %s\n> %s' % (_left, _right,) for _left, _right in zip(
hex_dump(left).splitlines(), hex_dump(right).splitlines())
if _left != _right]
- return u''.join('\n', '\n'.join(diff[:30],))
+ return ''.join('\n', '\n'.join(diff[:30],))
class assert_raises_msg(object):