mirror of
https://github.com/python/cpython.git
synced 2025-12-04 08:34:25 +00:00
Catch the correct errors.
This commit is contained in:
parent
0f5e87a266
commit
ff9b963387
2 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue