diff options
author | Victor Stinner <vstinner@wyplay.com> | 2011-11-21 17:04:30 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@wyplay.com> | 2011-11-21 17:04:30 (GMT) |
commit | 41dde32bf2f15d5dfcefc22e53c75da7e1503bfc (patch) | |
tree | 95f3ce7a565405cf2db0aa5128a374922d79a39e /Lib/test/test_locale.py | |
parent | ce0e7daf4195eda75166757183b06fd2d246e668 (diff) | |
download | cpython-41dde32bf2f15d5dfcefc22e53c75da7e1503bfc.zip cpython-41dde32bf2f15d5dfcefc22e53c75da7e1503bfc.tar.gz cpython-41dde32bf2f15d5dfcefc22e53c75da7e1503bfc.tar.bz2 |
Issue #13441: Reenable strxfrm() tests on Solaris
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')) |