summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjquast <contact@jeffquast.com>2014-06-07 21:37:36 -0700
committerThomas Kluyver <takowl@gmail.com>2014-06-15 18:01:18 -0700
commitcc377605826f86e8a901230bc6522561aeff2120 (patch)
treec87deb8d6de0e64ab06441a45d9f6cd80662ccc0
parentfa813aa799432d69ed5cdc6a3171c9f67066a3ba (diff)
downloadpexpect-cc377605826f86e8a901230bc6522561aeff2120.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')