string: fix all cap .title() test

pull/6084/head
Alexander Medvednikov 2020-08-09 04:09:48 +02:00
parent c65dbe51d6
commit 64f218e943
1 changed files with 1 additions and 1 deletions

View File

@ -588,7 +588,7 @@ fn test_title() {
assert s.title() == 'Hello World'
s = 'HELLO WORLD'
assert !s.is_title()
assert s.title() == 'Hello World'
assert s.title() == 'HELLO WORLD'
s = 'Hello World'
assert s.is_title()
assert s.title() == 'Hello World'