[Python-checkins] cpython (3.5): Issue #27748: Backed out changeset f845e24d794e

zach.ware python-checkins at python.org
Mon Sep 5 19:10:51 EDT 2016


https://hg.python.org/cpython/rev/e85ce70b73b3
changeset:   103088:e85ce70b73b3
branch:      3.5
parent:      103082:c5f557012ef8
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Mon Sep 05 18:08:27 2016 -0500
summary:
  Issue #27748: Backed out changeset f845e24d794e

Apparently the test succeeds on XP.

files:
  Lib/test/test_winsound.py |  5 +----
  1 files changed, 1 insertions(+), 4 deletions(-)


diff --git a/Lib/test/test_winsound.py b/Lib/test/test_winsound.py
--- a/Lib/test/test_winsound.py
+++ b/Lib/test/test_winsound.py
@@ -104,10 +104,7 @@
         safe_PlaySound('!"$%&/(#+*', winsound.SND_ALIAS)
 
     def test_alias_nofallback(self):
-        self.assertRaises(RuntimeError,
-                          winsound.PlaySound,
-                          '!"$%&/(#+*',
-                          winsound.SND_ALIAS | winsound.SND_NODEFAULT)
+        safe_PlaySound('!"$%&/(#+*', winsound.SND_ALIAS | winsound.SND_NODEFAULT)
 
     def test_stopasync(self):
         safe_PlaySound(

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list