]> granicus.if.org Git - python/commitdiff
Issue #10864 has been fixed: remove the workaround
authorVictor Stinner <victor.stinner@haypocalc.com>
Mon, 21 Mar 2011 01:11:01 +0000 (02:11 +0100)
committerVictor Stinner <victor.stinner@haypocalc.com>
Mon, 21 Mar 2011 01:11:01 +0000 (02:11 +0100)
Lib/test/test_time.py

index 7266e27295fadd32298d77c0b4053cd3c424a30f..2b58093f92909421a610223c78f9b6fe932536fe 100644 (file)
@@ -295,12 +295,8 @@ class _TestStrftimeYear:
         except ValueError:
             # strftime() is limited to [1; 9999] with Visual Studio
             return
-        # Issue #10864: OpenIndiana is limited to 4 digits,
-        # but Python doesn't raise a ValueError
-        #self.assertEqual(text, '12345')
-        #self.assertEqual(self.yearstr(123456789), '123456789')
-        self.assertIn(text, ('2345', '12345'))
-        self.assertIn(self.yearstr(123456789), ('123456789', '6789'))
+        self.assertEqual(text, '12345')
+        self.assertEqual(self.yearstr(123456789), '123456789')
 
 class _Test2dYear(_BaseYearTest):
     accept2dyear = 1