diff --git a/Lib/test/test_winsound.py b/Lib/test/test_winsound.py index d8a617e64fb..f1af2d2fc5a 100644 --- a/Lib/test/test_winsound.py +++ b/Lib/test/test_winsound.py @@ -160,12 +160,13 @@ def test_alias_question(self): def test_alias_fallback(self): if _have_soundcard(): winsound.PlaySound('!"$%&/(#+*', winsound.SND_ALIAS) - else: - self.assertRaises( - RuntimeError, - winsound.PlaySound, - '!"$%&/(#+*', winsound.SND_ALIAS - ) + # see http://bugs.python.org/issue19987 + #else: + # self.assertRaises( + # RuntimeError, + # winsound.PlaySound, + # '!"$%&/(#+*', winsound.SND_ALIAS + # ) def test_alias_nofallback(self): if _have_soundcard():