Issue #13441: Reenable strxfrm() tests on Solaris
This commit is contained in:
parent
ce0e7daf41
commit
41dde32bf2
|
@ -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.
|
||||
|
|
|
@ -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…
Reference in New Issue