From edc4124b331fa5dc3caed20b93ad860639c4d039 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Sat, 18 Jun 2022 21:31:34 +0000 Subject: [PATCH] fix kiss string test --- src/test/cases/BasicTestCase.kiss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/test/cases/BasicTestCase.kiss b/src/test/cases/BasicTestCase.kiss index b6d02f4..957ce13 100644 --- a/src/test/cases/BasicTestCase.kiss +++ b/src/test/cases/BasicTestCase.kiss @@ -522,12 +522,11 @@ From:[(assert false (+ \"false \" \"should \" \"have \" \"been \" \"true\"))]" m (Assert.equals 5 (assertLet [(Some thing) some5] thing)))) (function _testRawString [] -// Test escaped back slash with the raw haxe non-espaced backslash (Assert.equals "\\" #"\"#) (Assert.equals "\"#" ##""#"##)) (function _testKissStrings [] - (Assert.equals #( "\\\t\r\n\"$"; }# "\\\t\r\n\"\$") + (Assert.equals #{ "\\\t\r\n\"$"; }# "\\\t\r\n\"\$") (let [str "it's" num 3 l1 ["a" "b" "c"]