diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test__locale.py | 2 | ||||
-rw-r--r-- | Lib/test/test_locale.py | 4 |
2 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test__locale.py b/Lib/test/test__locale.py index 8ae881d..3fadb57 100644 --- a/Lib/test/test__locale.py +++ b/Lib/test/test__locale.py @@ -113,8 +113,6 @@ class _LocaleTests(unittest.TestCase): 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 8b6770e..44081b9 100644 --- a/Lib/test/test_locale.py +++ b/Lib/test/test_locale.py @@ -343,8 +343,6 @@ class TestCollation(unittest.TestCase): 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 @@ class TestEnUSCollation(BaseLocalizedTest, TestCollation): 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')) |