diff options
author | Guido van Rossum <guido@python.org> | 2007-08-24 14:53:14 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-08-24 14:53:14 +0000 |
commit | 966bb8c59bb2a072c230fa0c6459b3ac3d52b9f3 (patch) | |
tree | 36249dee091d4c9c35751cbfbd19674cc5f1d4e1 /Lib/test/test_datetime.py | |
parent | 915c87d3e5d84c0635c2957f4ae9e96d0ab6705f (diff) | |
download | cpython-git-966bb8c59bb2a072c230fa0c6459b3ac3d52b9f3.tar.gz |
Fix silly typo in test name.
Diffstat (limited to 'Lib/test/test_datetime.py')
-rw-r--r-- | Lib/test/test_datetime.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py index f55a796ed0..21b8890d0f 100644 --- a/Lib/test/test_datetime.py +++ b/Lib/test/test_datetime.py @@ -989,7 +989,7 @@ class TestDate(HarmlessMixedComparison, unittest.TestCase): 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") |