summary refs log tree commit diff stats
path: root/tests/method
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2018-04-30 02:56:19 +0200
committerAndreas Rumpf <rumpf_a@web.de>2018-04-30 02:56:19 +0200
commit87f548c5f4027a0faf57acf0878f7c5db382222c (patch)
treee8258cdedb86bc75cf85f3419f117252f2ba50b5 /tests/method
parent0fad659bf72a48d076978655dd23fe369c2d232e (diff)
downloadNim-87f548c5f4027a0faf57acf0878f7c5db382222c.tar.gz
make more tests green
Diffstat (limited to 'tests/method')
-rw-r--r--tests/method/tsimmeth.nim2
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!