From af9c3cfd443692cfbb89d5a8eedf175356611b53 Mon Sep 17 00:00:00 2001 From: Stefan Krah Date: Mon, 12 Apr 2010 15:33:12 +0000 Subject: Merged revisions 80000 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80000 | stefan.krah | 2010-04-12 17:21:25 +0200 (Mon, 12 Apr 2010) | 3 lines Issue #8367: Fix spurious test failure on systems without a sound card. ........ --- Lib/test/test_winsound.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Lib/test/test_winsound.py b/Lib/test/test_winsound.py index 2950bb7..3a093fd 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(): -- cgit v0.12