diff options
Diffstat (limited to 'Lib/test/test_winsound.py')
-rw-r--r-- | Lib/test/test_winsound.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Lib/test/test_winsound.py b/Lib/test/test_winsound.py index d8a617e..f1af2d2 100644 --- a/Lib/test/test_winsound.py +++ b/Lib/test/test_winsound.py @@ -160,12 +160,13 @@ class PlaySoundTest(unittest.TestCase): 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(): |