diff --git a/Lib/test/test_winsound.py b/Lib/test/test_winsound.py index 2950bb7d88c..3a093fd106f 100644 --- a/Lib/test/test_winsound.py +++ b/Lib/test/test_winsound.py @@ -194,11 +194,9 @@ class PlaySoundTest(unittest.TestCase): pass winsound.PlaySound(None, winsound.SND_PURGE) else: - self.assertRaises( - RuntimeError, - winsound.PlaySound, - None, winsound.SND_PURGE - ) + # Issue 8367: PlaySound(None, winsound.SND_PURGE) + # does not raise on systems without a sound card. + pass def _get_cscript_path():