Skip to content

Commit 62520ef

Browse files
Add test case for lower() method with special case for uppercase 'SS'
1 parent 2750549 commit 62520ef

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

mypyc/test-data/run-strings.test

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -915,6 +915,8 @@ def test_str_lower() -> None:
915915
assert "AbC123".lower() == "abc123"
916916
assert "áÉÍ".lower() == "áéí"
917917
assert "😴🚀".lower() == "😴🚀"
918+
# Special
919+
assert "SS".lower() == "ss"
918920

919921
[case testUpper]
920922
def test_str_upper() -> None:

0 commit comments

Comments
 (0)