diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-11-20 17:44:03 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-11-20 17:44:03 (GMT) |
commit | e342b8e8fe6a3359094688ce63bc0131ed7d416c (patch) | |
tree | 2ce8423eb1a77b3e8e57b4ff6cfa7ce44c6f304a /Lib/test | |
parent | 4733e1f78d0901daf5b0d351dd6c8769f05c3259 (diff) | |
parent | a211a7a0e7f5795e4049bd089a8c663189abe3f1 (diff) | |
download | cpython-e342b8e8fe6a3359094688ce63bc0131ed7d416c.zip cpython-e342b8e8fe6a3359094688ce63bc0131ed7d416c.tar.gz cpython-e342b8e8fe6a3359094688ce63bc0131ed7d416c.tar.bz2 |
Merge 3.4
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 |