summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjquast <contact@jeffquast.com>2014-06-24 15:08:34 -0700
committerjquast <contact@jeffquast.com>2014-06-24 15:08:34 -0700
commit84b836b7e6d40a4af231321966d6bebb1efe32cf (patch)
tree0d29714711d2134adc8c325aba6e1274d5176c3d
parent98838e7d8253a9c24751549c69a4f7d4ddffeb09 (diff)
downloadpexpect-84b836b7e6d40a4af231321966d6bebb1efe32cf.tar.gz
gah; fix constant VINTR -> INTR
-rwxr-xr-xtests/test_ctrl_chars.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_ctrl_chars.py b/tests/test_ctrl_chars.py
index 7c9c372..9c7b869 100755
--- a/tests/test_ctrl_chars.py
+++ b/tests/test_ctrl_chars.py
@@ -54,7 +54,7 @@ class TestCtrlChars(PexpectTestCase.PexpectTestCase):
child = pexpect.spawn('python getch.py', echo=False, timeout=5)
child.expect('READY')
child.sendintr()
- child.expect(str(child._VINTR) + '<STOP>')
+ child.expect(str(child._INTR) + '<STOP>')
child.send(byte(0))
child.expect('0<STOP>')