[Python-checkins] cpython (3.4): make test name consistent with the rest of the file

benjamin.peterson python-checkins at python.org
Wed Apr 2 18:05:47 CEST 2014


http://hg.python.org/cpython/rev/6185b71bdc1c
changeset:   90108:6185b71bdc1c
branch:      3.4
parent:      90106:3e2354dde892
user:        Benjamin Peterson <benjamin at python.org>
date:        Wed Apr 02 12:05:35 2014 -0400
summary:
  make test name consistent with the rest of the file

files:
  Lib/test/test_exceptions.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py
--- a/Lib/test/test_exceptions.py
+++ b/Lib/test/test_exceptions.py
@@ -763,7 +763,7 @@
             pass
         self.assertEqual(e, (None, None, None))
 
-    def testUnicodeChangeAttributes(self):
+    def test_unicode_change_attributes(self):
         # See issue 7309. This was a crasher.
 
         u = UnicodeEncodeError('baz', 'xxxxx', 1, 5, 'foo')

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


More information about the Python-checkins mailing list