mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Issue #13441: Reenable strxfrm() tests on Solaris
This commit is contained in:
parent
ce0e7daf41
commit
41dde32bf2
2 changed files with 0 additions and 6 deletions
|
@ -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'))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue