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 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" |