diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-19 03:27:48 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-19 03:27:48 (GMT) |
commit | b0b0e628ee453126efb16805588ef60e2601fd08 (patch) | |
tree | 1048819ba08c5f0f1db2b96abdcc0e38c16d24db /Lib/test/test_asyncio/test_base_events.py | |
parent | 8abac348a9a6d8f64527f913609789f50251ba58 (diff) | |
download | cpython-b0b0e628ee453126efb16805588ef60e2601fd08.zip cpython-b0b0e628ee453126efb16805588ef60e2601fd08.tar.gz cpython-b0b0e628ee453126efb16805588ef60e2601fd08.tar.bz2 |
asyncio: Fix spelling and typos.
Thanks to Vajrasky Kok for discovering some of them.
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 f664ccc..2eee3be 100644 --- a/Lib/test/test_asyncio/test_base_events.py +++ b/Lib/test/test_asyncio/test_base_events.py @@ -277,7 +277,7 @@ class BaseEventLoopTests(unittest.TestCase): asyncio.SubprocessProtocol, *args, bufsize=4096) def test_subprocess_shell_invalid_args(self): - # exepected a string, not an int or a list + # expected a string, not an int or a list self.assertRaises(TypeError, self.loop.run_until_complete, self.loop.subprocess_shell, asyncio.SubprocessProtocol, 123) |