summary refs log tree commit diff stats
path: root/tests/accept/run/tbintre2.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/run/tbintre2.nim')
-rwxr-xr-xtests/accept/run/tbintre2.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/accept/run/tbintre2.nim b/tests/accept/run/tbintre2.nim
index dedc87705..e85837dfa 100755
--- a/tests/accept/run/tbintre2.nim
+++ b/tests/accept/run/tbintre2.nim
@@ -4,7 +4,7 @@ import tbintree
 
 var
   root: PBinaryTree[string]
-  x = newNode("hallo")
+  x = newNode("hello")
 add(root, x)
 add(root, "world")
 if find(root, "world"):
@@ -21,5 +21,5 @@ add(r2, 99)
 for y in items(r2):
   stdout.write(y)
 
-#OUT halloworld99110223
+#OUT helloworld99110223