Improved thread interlocks in tests.
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
index 96f8215..7a723e0 100644
--- a/Lib/test/test_logging.py
+++ b/Lib/test/test_logging.py
@@ -1385,7 +1385,10 @@
logger = logging.getLogger("udp")
logger.error("spam")
self.handled.wait()
- self.assertEqual(self.log_output, "spam\n")
+ self.handled.clear()
+ logger.error("eggs")
+ self.handled.wait()
+ self.assertEqual(self.log_output, "spam\neggs\n")
@unittest.skipUnless(threading, 'Threading required for this test.')