From 890d7fac14914c9749d707be37e082af1afa9e80 Mon Sep 17 00:00:00 2001 From: Joey Payne Date: Sat, 18 Jun 2016 06:21:56 -0600 Subject: [PATCH] Fix split stdlib test --- tests/stdlib/tsplit.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/stdlib/tsplit.nim b/tests/stdlib/tsplit.nim index 5a1cd2f5fa..44da58acaa 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"