From 8c7623268bcf4006f8792b2c86122d239e348589 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Tue, 13 Aug 2024 00:36:55 +0200 Subject: Fix unicode errors --- 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 bd7e494..4e036b3 100644 --- a/tests/parse.scm +++ b/tests/parse.scm @@ -252,7 +252,7 @@ (test "testSingleWordTimerWithPunctuation" '(recipe (metadata ()) - ((step ("Let it " (timer "rest" #f) ", after plating")))) + ((step ("Let it " (timer "rest" #f) ", then serve")))) (cook->list (parse-cook "Let it ~rest, then serve\n"))) (test "testSingleWordTimerWithUnicodePunctuation" @@ -283,7 +283,7 @@ (test "testSingleWordIngredientWithUnicodePunctuation" '(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"))) ; NOTE: the space is U+2009 -- cgit v1.2.3