diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-12-17 00:36:01 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-12-17 00:36:01 (GMT) |
commit | 88aa2dc1ac1d02369c914283847336a1c3abae8e (patch) | |
tree | bccb99c5e46b3a48ad31f92db876230e36bf6375 /Lib | |
parent | 1215227d1f2be84ec25f080bce2865f6e3134f80 (diff) | |
parent | a3f82bad162f3b3361bfa520569bdd6b8d744c6c (diff) | |
download | cpython-88aa2dc1ac1d02369c914283847336a1c3abae8e.zip cpython-88aa2dc1ac1d02369c914283847336a1c3abae8e.tar.gz cpython-88aa2dc1ac1d02369c914283847336a1c3abae8e.tar.bz2 |
Merge 3.5
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_asyncio/test_base_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_base_events.py b/Lib/test/test_asyncio/test_base_events.py index 608398c..a46ac16 100644 --- a/Lib/test/test_asyncio/test_base_events.py +++ b/Lib/test/test_asyncio/test_base_events.py @@ -1368,7 +1368,7 @@ class BaseEventLoopWithSelectorTests(test_utils.TestCase): self.assertRaises( OSError, self.loop.run_until_complete, coro) - @patch_socket + @patch_socket def test_create_datagram_endpoint_socket_err(self, m_socket): m_socket.getaddrinfo = socket.getaddrinfo m_socket.socket.side_effect = OSError |