diff options
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 |