Kaydet (Commit) 41dde32b authored tarafından Victor Stinner's avatar Victor Stinner

Issue #13441: Reenable strxfrm() tests on Solaris

üst ce0e7daf
......@@ -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'))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment