summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-07-15 16:09:47 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-07-15 16:09:47 (GMT)
commit48830035e5e616b9660014cc451198b82e3f8a8e (patch)
tree83ded82e71566408283e81143706f6259d87481f /Lib
parent9ad51ec81b4fd9e753f92b5d0c840e18c0762c40 (diff)
downloadcpython-48830035e5e616b9660014cc451198b82e3f8a8e.zip
cpython-48830035e5e616b9660014cc451198b82e3f8a8e.tar.gz
cpython-48830035e5e616b9660014cc451198b82e3f8a8e.tar.bz2
Closes #18464: fix typo in test name.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_email/test__encoded_words.py2
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',