1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

string: fix all cap .title() test

This commit is contained in:
Alexander Medvednikov 2020-08-09 04:09:48 +02:00
parent c65dbe51d6
commit 64f218e943

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'