summaryrefslogtreecommitdiff
path: root/tests/parse.scm
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2024-08-12 23:54:09 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2024-08-12 23:54:09 +0200
commit3e4bf105335b4ee129823b7561f3bec320451fc3 (patch)
tree74bc8d9d1048aa847f109c1ca609a6c5349b391e /tests/parse.scm
parentebf541c89aa304dbd96335e898c06b11269a81e9 (diff)
Fix unicode spaces
Diffstat (limited to 'tests/parse.scm')
-rw-r--r--tests/parse.scm4
1 files changed, 2 insertions, 2 deletions
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"