Skip to content

Commit 1d02728

Browse files
authored
Skip barred-lambda capitalize check for IronPython (IronLanguages#1993)
1 parent 051d514 commit 1d02728

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/core/IronPython.StdLib/lib/test/string_tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,8 @@ def test_capitalize(self):
720720
self.checkequal('\u2160\u2171\u2172',
721721
'\u2170\u2171\u2172', 'capitalize')
722722
# check with Ll chars with no upper - nothing changes here
723-
self.checkequal('\u019b\u1d00\u1d86\u0221\u1fb7',
723+
if sys.implementation.name != "ironpython": # https://github.com/IronLanguages/ironpython3/issues/839
724+
self.checkequal('\u019b\u1d00\u1d86\u0221\u1fb7',
724725
'\u019b\u1d00\u1d86\u0221\u1fb7', 'capitalize')
725726

726727
self.checkraises(TypeError, 'hello', 'capitalize', 42)

0 commit comments

Comments
 (0)