diff options
Diffstat (limited to 'Lib/test/test_locale.py')
-rw-r--r-- | Lib/test/test_locale.py | 4 |
1 files changed, 0 insertions, 4 deletions
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')) |