diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-08-13 00:36:55 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-08-13 00:43:31 +0200 |
commit | 8c7623268bcf4006f8792b2c86122d239e348589 (patch) | |
tree | 277bff29c5b6fabfa8c761d9fa1a3a94077e09ca /tests | |
parent | 52cb67b8a37e13a8f034db1fe0bbf5f4cbc52247 (diff) |
Fix unicode errors
Diffstat (limited to 'tests')
-rw-r--r-- | tests/parse.scm | 4 |
1 files changed, 2 insertions, 2 deletions
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 |