summary refs log tree commit diff stats
path: root/tests/accept/run/tpos.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/run/tpos.nim')
-rwxr-xr-xtests/accept/run/tpos.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/accept/run/tpos.nim b/tests/accept/run/tpos.nim
index 114d39c05..df701d3c5 100755
--- a/tests/accept/run/tpos.nim
+++ b/tests/accept/run/tpos.nim
@@ -23,7 +23,7 @@ proc mypos(sub, s: string, start: int = 0): int =
     else:

       result = -1

 

-var sub = "hallo"

-var s = "world hallo"

+var sub = "hello"

+var s = "world hello"

 write(stdout, mypos(sub, s))

 #OUT 6