From b485bb416c4513878b899fc5a3cd6260683b1cd1 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Fri, 20 Nov 2015 12:39:43 -0500 Subject: [PATCH] asyncio: Sync with github --- Lib/test/test_asyncio/test_base_events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_asyncio/test_base_events.py b/Lib/test/test_asyncio/test_base_events.py index 072fe2f93e..dff01d2c11 100644 --- a/Lib/test/test_asyncio/test_base_events.py +++ b/Lib/test/test_asyncio/test_base_events.py @@ -782,7 +782,7 @@ class BaseEventLoopTests(test_utils.TestCase): self.loop._selector.select.return_value = (event_sentinel,) for i in range(1, 3): - with self.subTest('Loop %d/2' % i): + # with self.subTest('Loop %d/2' % i): # Not in Python 3.3. self.loop.call_soon(self.loop.stop) self.loop.run_forever() self.assertEqual(callcount, 1) -- 2.49.0