Skip to content

Commit af3afc9

Browse files
committed
remove the test_locale skips - gh-60462 fixed the issue
1 parent 39e735b commit af3afc9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Lib/test/test_locale.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -336,8 +336,6 @@ def test_strcoll(self):
336336
self.assertRaises(ValueError, locale.strcoll, 'a\0', 'a')
337337
self.assertRaises(ValueError, locale.strcoll, 'a', 'a\0')
338338

339-
@unittest.skipIf(sys.platform.startswith("sunos"),
340-
"gh-91214: locale.strxfrm doesn't work on Solaris")
341339
def test_strxfrm(self):
342340
self.assertLess(locale.strxfrm('a'), locale.strxfrm('b'))
343341
# embedded null character
@@ -371,8 +369,6 @@ def test_strcoll_with_diacritic(self):
371369
@unittest.skipIf(linked_to_musl(), "musl libc issue, bpo-46390")
372370
@unittest.skipIf(sys.platform.startswith("netbsd"),
373371
"gh-124108: NetBSD doesn't support UTF-8 for LC_COLLATE")
374-
@unittest.skipIf(sys.platform.startswith("sunos"),
375-
"gh-91214: locale.strxfrm doesn't work on Solaris")
376372
def test_strxfrm_with_diacritic(self):
377373
self.assertLess(locale.strxfrm('à'), locale.strxfrm('b'))
378374

0 commit comments

Comments
 (0)