From 3e4bf105335b4ee129823b7561f3bec320451fc3 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Mon, 12 Aug 2024 23:54:09 +0200 Subject: Fix unicode spaces --- tests/parse.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/parse.scm b/tests/parse.scm index 2c1573b..2ebad75 100644 --- a/tests/parse.scm +++ b/tests/parse.scm @@ -290,7 +290,7 @@ ; NOTE: the space is U+2009 (test "testIngredientWithUnicodeWhitespace" '(recipe (metadata ()) - ((step ("Add some " (ingredient "chilli" #f) " then bake")))) + ((step ("Add " (ingredient "chilli" #f) " then bake")))) (cook->list (parse-cook "Add @chilli then bake\n"))) (test "testInvalidMultiWordIngredient" @@ -316,7 +316,7 @@ ; NOTE: the space is U+2009 (test "testCookwareWithUnicodeWhitespace" '(recipe (metadata ()) - ((step ( "Place in " (cookware "pot" #f) " then boil")))) + ((step ( "Add to " (cookware "pot" #f) " then boil")))) (cook->list (parse-cook "Add to #pot then boil\n"))) (test "testInvalidMultiWordCookware" -- cgit v1.2.3