diff options
author | jquast <contact@jeffquast.com> | 2014-06-07 21:37:36 -0700 |
---|---|---|
committer | Thomas Kluyver <takowl@gmail.com> | 2014-06-15 18:01:18 -0700 |
commit | cc377605826f86e8a901230bc6522561aeff2120 (patch) | |
tree | c87deb8d6de0e64ab06441a45d9f6cd80662ccc0 | |
parent | fa813aa799432d69ed5cdc6a3171c9f67066a3ba (diff) | |
download | pexpect-cc377605826f86e8a901230bc6522561aeff2120.tar.gz |
python3.2 accommodations
-rwxr-xr-x | tests/test_interact.py | 8 |
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') |