[Python-checkins] r86542 - python/branches/py3k/Lib/test/test_argparse.py

r.david.murray python-checkins at python.org
Sat Nov 20 04:48:58 CET 2010


Author: r.david.murray
Date: Sat Nov 20 04:48:58 2010
New Revision: 86542

Log:
Make test class name unique so that both test classes run.


Modified:
   python/branches/py3k/Lib/test/test_argparse.py

Modified: python/branches/py3k/Lib/test/test_argparse.py
==============================================================================
--- python/branches/py3k/Lib/test/test_argparse.py	(original)
+++ python/branches/py3k/Lib/test/test_argparse.py	Sat Nov 20 04:48:58 2010
@@ -4259,7 +4259,7 @@
 # ArgumentTypeError tests
 # =======================
 
-class TestArgumentError(TestCase):
+class TestArgumentTypeError(TestCase):
 
     def test_argument_type_error(self):
 


More information about the Python-checkins mailing list