Catch the correct errors.
This commit is contained in:
parent
0f5e87a266
commit
ff9b963387
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue