diff --git a/Lib/test/test__locale.py b/Lib/test/test__locale.py index 8ae881d47bc..3fadb575f29 100644 --- a/Lib/test/test__locale.py +++ b/Lib/test/test__locale.py @@ -113,8 +113,6 @@ def test_lc_numeric_basic(self): nl_radixchar, li_radixchar, loc, set_locale)) - @unittest.skipIf(sys.platform == 'sunos5', - "http://bugs.python.org/issue13441") def test_float_parsing(self): # Bug #1391872: Test whether float parsing is okay on European # locales. diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py index 8b6770e6878..44081b9462b 100644 --- a/Lib/test/test_locale.py +++ b/Lib/test/test_locale.py @@ -343,8 +343,6 @@ def test_strcoll(self): self.assertEqual(locale.strcoll('a', 'a'), 0) self.assertGreater(locale.strcoll('b', 'a'), 0) - @unittest.skipIf(sys.platform == 'sunos5', - "http://bugs.python.org/issue13441") def test_strxfrm(self): self.assertLess(locale.strxfrm('a'), locale.strxfrm('b')) @@ -366,8 +364,6 @@ def setUp(self): def test_strcoll_with_diacritic(self): self.assertLess(locale.strcoll('à', 'b'), 0) - @unittest.skipIf(sys.platform == 'sunos5', - "http://bugs.python.org/issue13441") def test_strxfrm_with_diacritic(self): self.assertLess(locale.strxfrm('à'), locale.strxfrm('b'))