diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-04-30 02:56:19 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-04-30 02:56:19 +0200 |
commit | 87f548c5f4027a0faf57acf0878f7c5db382222c (patch) | |
tree | e8258cdedb86bc75cf85f3419f117252f2ba50b5 /tests/method | |
parent | 0fad659bf72a48d076978655dd23fe369c2d232e (diff) | |
download | Nim-87f548c5f4027a0faf57acf0878f7c5db382222c.tar.gz |
make more tests green
Diffstat (limited to 'tests/method')
-rw-r--r-- | tests/method/tsimmeth.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/method/tsimmeth.nim b/tests/method/tsimmeth.nim index 11ff2674f..a057c35b7 100644 --- a/tests/method/tsimmeth.nim +++ b/tests/method/tsimmeth.nim @@ -6,7 +6,7 @@ discard """ import strutils -var x = "hello world!".toLower.toUpper +var x = "hello world!".toLowerAscii.toUpperAscii x.echo() #OUT HELLO WORLD! |