From 84b836b7e6d40a4af231321966d6bebb1efe32cf Mon Sep 17 00:00:00 2001 From: jquast Date: Tue, 24 Jun 2014 15:08:34 -0700 Subject: gah; fix constant VINTR -> INTR --- tests/test_ctrl_chars.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_ctrl_chars.py') 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) + '') + child.expect(str(child._INTR) + '') child.send(byte(0)) child.expect('0') -- cgit v1.2.1