diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-07-15 16:10:29 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-07-15 16:10:29 (GMT) |
commit | 7f93b36e73b9006772359c02255a468fe7df3fcd (patch) | |
tree | 2691961ca1788770bec5e82a3f83ce9a6c5990b5 /Lib/test/test_email | |
parent | 9ba6962a041c94773ca250aa2e103f153666a11c (diff) | |
parent | 48830035e5e616b9660014cc451198b82e3f8a8e (diff) | |
download | cpython-7f93b36e73b9006772359c02255a468fe7df3fcd.zip cpython-7f93b36e73b9006772359c02255a468fe7df3fcd.tar.gz cpython-7f93b36e73b9006772359c02255a468fe7df3fcd.tar.bz2 |
Merge: 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', |