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

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


http://hg.python.org/cpython/rev/47a659bc11c4
changeset:   84633:47a659bc11c4
parent:      84631:9b041f44cb63
parent:      84632:6a6ca7c49c2a
user:        R David Murray <rdmurray at bitdance.com>
date:        Mon Jul 15 12:10:29 2013 -0400
summary:
  Merge: 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