[Python-checkins] r57391 - python/trunk/Lib/test/test_datetime.py

guido.van.rossum python-checkins at python.org
Fri Aug 24 16:53:14 CEST 2007


Author: guido.van.rossum
Date: Fri Aug 24 16:53:14 2007
New Revision: 57391

Modified:
   python/trunk/Lib/test/test_datetime.py
Log:
Fix silly typo in test name.


Modified: python/trunk/Lib/test/test_datetime.py
==============================================================================
--- python/trunk/Lib/test/test_datetime.py	(original)
+++ python/trunk/Lib/test/test_datetime.py	Fri Aug 24 16:53:14 2007
@@ -989,7 +989,7 @@
         self.failUnless(self.theclass.min)
         self.failUnless(self.theclass.max)
 
-    def test_srftime_out_of_range(self):
+    def test_strftime_out_of_range(self):
         # For nasty technical reasons, we can't handle years before 1900.
         cls = self.theclass
         self.assertEqual(cls(1900, 1, 1).strftime("%Y"), "1900")


More information about the Python-checkins mailing list