Catch the correct errors.

This commit is contained in:
Georg Brandl 2007-08-24 19:22:34 +00:00
parent 0f5e87a266
commit ff9b963387
2 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ class LinuxAudioDevTests(unittest.TestCase):
def test_main():
try:
dsp = linuxaudiodev.open('w')
except IOError, msg:
except linuxaudiodev.error, msg:
if msg.args[0] in (errno.EACCES, errno.ENOENT, errno.ENODEV, errno.EBUSY):
raise TestSkipped(msg)
raise

View File

@ -162,7 +162,7 @@ class OSSAudioDevTests(unittest.TestCase):
def test_main():
try:
dsp = ossaudiodev.open('w')
except IOError, msg:
except ossaudiodev.error, msg:
if msg[0] in (errno.EACCES, errno.ENOENT, errno.ENODEV, errno.EBUSY):
raise TestSkipped(msg)
raise