diff options
author | Joey Payne <jyapayne@gmail.com> | 2016-06-18 06:21:56 -0600 |
---|---|---|
committer | Joey Payne <jyapayne@gmail.com> | 2016-07-01 07:24:30 -0600 |
commit | 890d7fac14914c9749d707be37e082af1afa9e80 (patch) | |
tree | 20787d53083360ea7d988c9aa24d217989f42efc /tests/stdlib/tsplit.nim | |
parent | b80f12533300b1e5382ea6cdf300fa52543a213d (diff) | |
download | Nim-890d7fac14914c9749d707be37e082af1afa9e80.tar.gz |
Fix split stdlib test
Diffstat (limited to 'tests/stdlib/tsplit.nim')
-rw-r--r-- | tests/stdlib/tsplit.nim | 2 |
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" |