diff options
| author | Guido van Rossum <guido@dropbox.com> | 2013-10-17 22:39:45 (GMT) |
|---|---|---|
| committer | Guido van Rossum <guido@dropbox.com> | 2013-10-17 22:39:45 (GMT) |
| commit | fc29e0f37e8a5928c3ef38ce7e02c64984d1b5bc (patch) | |
| tree | 9c111dea008d9eec467e63d76d59502c2f5128a3 /Lib/test/test_asyncio/test_events.py | |
| parent | b795aa8547b5a615d715fedc6a6267b7e8811d94 (diff) | |
| download | cpython-fc29e0f37e8a5928c3ef38ce7e02c64984d1b5bc.zip cpython-fc29e0f37e8a5928c3ef38ce7e02c64984d1b5bc.tar.gz cpython-fc29e0f37e8a5928c3ef38ce7e02c64984d1b5bc.tar.bz2 | |
Rename the logger to plain "logger".
Diffstat (limited to 'Lib/test/test_asyncio/test_events.py')
| -rw-r--r-- | Lib/test/test_asyncio/test_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index 243f400..a9a9271 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -1320,7 +1320,7 @@ class HandleTests(unittest.TestCase): self.assertRaises( AssertionError, events.make_handle, h1, ()) - @unittest.mock.patch('asyncio.events.asyncio_log') + @unittest.mock.patch('asyncio.events.logger') def test_callback_with_exception(self, log): def callback(): raise ValueError() |
