Issue #8367: Fix spurious test failure on systems without a sound card.
This commit is contained in:
parent
fa900d47b8
commit
9aca91d7d7
|
@ -193,11 +193,9 @@ class PlaySoundTest(unittest.TestCase):
|
||||||
pass
|
pass
|
||||||
winsound.PlaySound(None, winsound.SND_PURGE)
|
winsound.PlaySound(None, winsound.SND_PURGE)
|
||||||
else:
|
else:
|
||||||
self.assertRaises(
|
# Issue 8367: PlaySound(None, winsound.SND_PURGE)
|
||||||
RuntimeError,
|
# does not raise on systems without a sound card.
|
||||||
winsound.PlaySound,
|
pass
|
||||||
None, winsound.SND_PURGE
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _get_cscript_path():
|
def _get_cscript_path():
|
||||||
|
|
Loading…
Reference in New Issue