Skip to content

Commit

Permalink
gah; fix constant VINTR -> INTR
Browse files Browse the repository at this point in the history
  • Loading branch information
jquast committed Jun 24, 2014
1 parent 98838e7 commit 84b836b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_ctrl_chars.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def test_sendintr (self):
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>')
Expand Down

0 comments on commit 84b836b

Please sign in to comment.