diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-07-15 16:09:47 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-07-15 16:09:47 (GMT) |
commit | 48830035e5e616b9660014cc451198b82e3f8a8e (patch) | |
tree | 83ded82e71566408283e81143706f6259d87481f /Lib/test/test_email | |
parent | 9ad51ec81b4fd9e753f92b5d0c840e18c0762c40 (diff) | |
download | cpython-48830035e5e616b9660014cc451198b82e3f8a8e.zip cpython-48830035e5e616b9660014cc451198b82e3f8a8e.tar.gz cpython-48830035e5e616b9660014cc451198b82e3f8a8e.tar.bz2 |
Closes #18464: fix typo in test name.
Diffstat (limited to 'Lib/test/test_email')
-rw-r--r-- | Lib/test/test_email/test__encoded_words.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_email/test__encoded_words.py b/Lib/test/test_email/test__encoded_words.py index f8e380d..900e1d0 100644 --- a/Lib/test/test_email/test__encoded_words.py +++ b/Lib/test/test_email/test__encoded_words.py @@ -75,7 +75,7 @@ class TestDecode(TestEmailBase): def test_non_trivial_q(self): self._test('=?latin-1?q?=20F=fcr=20Elise=20?=', ' Für Elise ', 'latin-1') - def test_q_escpaed_bytes_preserved(self): + def test_q_escaped_bytes_preserved(self): self._test(b'=?us-ascii?q?=20\xACfoo?='.decode('us-ascii', 'surrogateescape'), ' \uDCACfoo', |