diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-11-20 17:43:52 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-11-20 17:43:52 (GMT) |
commit | a211a7a0e7f5795e4049bd089a8c663189abe3f1 (patch) | |
tree | afe44b69f4c85b7b7be7e214ed8eb3a4095f0131 /Lib/test | |
parent | d59bba88e377458eae1bb3b56a0e173cfb8c9af8 (diff) | |
download | cpython-a211a7a0e7f5795e4049bd089a8c663189abe3f1.zip cpython-a211a7a0e7f5795e4049bd089a8c663189abe3f1.tar.gz cpython-a211a7a0e7f5795e4049bd089a8c663189abe3f1.tar.bz2 |
asyncio.tests: Fix whitespace
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_asyncio/test_base_events.py | 7 |
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 dff01d2..bedfe16 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 |