summary refs log tree commit diff stats
path: root/tests/stdlib/tsplit.nim
diff options
context:
space:
mode:
authorJoey Payne <jyapayne@gmail.com>2016-06-18 06:21:56 -0600
committerJoey Payne <jyapayne@gmail.com>2016-07-01 07:24:30 -0600
commit890d7fac14914c9749d707be37e082af1afa9e80 (patch)
tree20787d53083360ea7d988c9aa24d217989f42efc /tests/stdlib/tsplit.nim
parentb80f12533300b1e5382ea6cdf300fa52543a213d (diff)
downloadNim-890d7fac14914c9749d707be37e082af1afa9e80.tar.gz
Fix split stdlib test
Diffstat (limited to 'tests/stdlib/tsplit.nim')
-rw-r--r--tests/stdlib/tsplit.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stdlib/tsplit.nim b/tests/stdlib/tsplit.nim
index 5a1cd2f5f..44da58aca 100644
--- a/tests/stdlib/tsplit.nim
+++ b/tests/stdlib/tsplit.nim
@@ -9,7 +9,7 @@ for w in split("|abc|xy|z", {'|'}):
   s.add("#")
   s.add(w)
 
-if s == "#abc#xy#z":
+if s == "##abc#xy#z":
   echo "true"
 else:
   echo "false"