summaryrefslogtreecommitdiff
path: root/Lib/test/test_asyncio/test_base_events.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-11-20 12:43:52 -0500
committerYury Selivanov <yselivanov@sprymix.com>2015-11-20 12:43:52 -0500
commit23cb3ef8eef1189c6c0963781c192428657bc37a (patch)
tree77f2d77342d5c02cb5dbeb48566abfc00d874bc2 /Lib/test/test_asyncio/test_base_events.py
parent37bba826b15bc3c4d5008d62d37081ca3b7ff4e0 (diff)
downloadcpython-23cb3ef8eef1189c6c0963781c192428657bc37a.tar.gz
asyncio.tests: Fix whitespace
Diffstat (limited to 'Lib/test/test_asyncio/test_base_events.py')
-rw-r--r--Lib/test/test_asyncio/test_base_events.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/test/test_asyncio/test_base_events.py b/Lib/test/test_asyncio/test_base_events.py
index dff01d2c11..bedfe16c15 100644
--- a/Lib/test/test_asyncio/test_base_events.py
+++ b/Lib/test/test_asyncio/test_base_events.py
@@ -782,10 +782,9 @@ 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): # Not in Python 3.3.
- self.loop.call_soon(self.loop.stop)
- self.loop.run_forever()
- self.assertEqual(callcount, 1)
+ self.loop.call_soon(self.loop.stop)
+ self.loop.run_forever()
+ self.assertEqual(callcount, 1)
def test_run_once(self):
# Simple test for test_utils.run_once(). It may seem strange