From 2f949fea5f3104e9381cfb2ed063fb41a4a05e84 Mon Sep 17 00:00:00 2001 From: hellerve Date: Fri, 24 May 2019 15:43:13 +0200 Subject: [PATCH] test: update string tests to reflect new string.words behavior --- test/string.carp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/string.carp b/test/string.carp index cc8ca98a..310b4a1a 100644 --- a/test/string.carp +++ b/test/string.carp @@ -179,7 +179,7 @@ "collapse-whitespace works as expected") (assert-equal test &[@"erik" @"sved" @"hej" @"foo"] - &(words "erik sved hej\tfoo") + &(words "erik sved\nhej\tfoo") "words works correctly") (assert-equal test &[@"erik" @"sved" @"hej" @"foo"]