gah; fix constant VINTR -> INTR
authorjquast <contact@jeffquast.com>
Tue, 24 Jun 2014 22:08:34 +0000 (15:08 -0700)
committerjquast <contact@jeffquast.com>
Tue, 24 Jun 2014 22:08:34 +0000 (15:08 -0700)
tests/test_ctrl_chars.py

index 7c9c37231fc8d77428de8472fc3edb5eefa5e178..9c7b8699c2de39da462156ccf1525834067499bd 100755 (executable)
@@ -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>')