summary refs log tree commit diff stats
path: root/tests/method/tsimmeth.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/method/tsimmeth.nim')
-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!