[Python-checkins] cpython (3.3): Closes #18464: fix typo in test name.

r.david.murray python-checkins at python.org
Mon Jul 15 18:10:41 CEST 2013


http://hg.python.org/cpython/rev/6a6ca7c49c2a
changeset:   84632:6a6ca7c49c2a
branch:      3.3
parent:      84630:9ce863993a38
user:        R David Murray <rdmurray at bitdance.com>
date:        Mon Jul 15 12:09:47 2013 -0400
summary:
  Closes #18464: fix typo in test name.

files:
  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
--- a/Lib/test/test_email/test__encoded_words.py
+++ b/Lib/test/test_email/test__encoded_words.py
@@ -75,7 +75,7 @@
     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',

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list