diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-10-19 15:04:38 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-10-19 15:04:38 (GMT) |
commit | f23530f5690d2e37bba7235a6398b2c386a5b485 (patch) | |
tree | 0e2ed390b1bc3007fa60dcc784f4ae3f3d21b1ff /Lib/test/test_asyncio/test_base_events.py | |
parent | 0fc08fd2c7774a5521ae198b04639ec634fdb5c2 (diff) | |
download | cpython-f23530f5690d2e37bba7235a6398b2c386a5b485.zip cpython-f23530f5690d2e37bba7235a6398b2c386a5b485.tar.gz cpython-f23530f5690d2e37bba7235a6398b2c386a5b485.tar.bz2 |
Issue #22186: Fix typos in Lib/.
Patch by FĂ©vry Thibault.
Diffstat (limited to 'Lib/test/test_asyncio/test_base_events.py')
-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 afc448c..d61a64c 100644 --- a/Lib/test/test_asyncio/test_base_events.py +++ b/Lib/test/test_asyncio/test_base_events.py @@ -371,7 +371,7 @@ class BaseEventLoopTests(test_utils.TestCase): self.loop.run_until_complete, self.loop.subprocess_exec, asyncio.SubprocessProtocol) - # exepected multiple arguments, not a list + # expected multiple arguments, not a list self.assertRaises(TypeError, self.loop.run_until_complete, self.loop.subprocess_exec, asyncio.SubprocessProtocol, args) |