From: R David Murray Date: Mon, 15 Jul 2013 16:09:47 +0000 (-0400) Subject: Closes #18464: fix typo in test name. X-Git-Tag: v3.4.0a1~210^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=48830035e5e616b9660014cc451198b82e3f8a8e;p=python Closes #18464: fix typo in test name. --- diff --git a/Lib/test/test_email/test__encoded_words.py b/Lib/test/test_email/test__encoded_words.py index f8e380dc55..900e1d0e64 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',