summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjquast <contact@jeffquast.com>2014-06-07 21:37:36 -0700
committerjquast <contact@jeffquast.com>2014-06-07 21:37:36 -0700
commita4d7da7c6a5c0325a07852283f008ade5a1e9c4f (patch)
tree244c7b4db5bef109af03a7ec9b1b4a1705993e43
parent6e454ece1448b2dc6cf43a86fc01a5f3a1ae2803 (diff)
downloadpexpect-a4d7da7c6a5c0325a07852283f008ade5a1e9c4f.tar.gz
python3.2 accommodations
-rwxr-xr-xtests/test_interact.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_interact.py b/tests/test_interact.py
index 4854ff1..70a0e08 100755
--- a/tests/test_interact.py
+++ b/tests/test_interact.py
@@ -78,10 +78,10 @@ class InteractTestCase (PexpectTestCase.PexpectTestCase):
" Ensure subprocess receives unicode, EOF, and exit. "
p = pexpect.spawnu(self.interact_ucs_py, timeout=5)
p.expect('<in >')
- p.sendline(u'ɑlpha')
- p.sendline(u'Βeta')
- p.expect(u'<out>ɑlpha')
- p.expect(u'<out>Βeta')
+ p.sendline('ɑlpha')
+ p.sendline('Βeta')
+ p.expect('<out>ɑlpha')
+ p.expect('<out>Βeta')
p.sendeof()
p.expect_exact('<eof>')
p.expect_exact('Escaped interact')