diff options
-rw-r--r-- | tests/parse.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/parse.scm b/tests/parse.scm index 2ebad75..bd7e494 100644 --- a/tests/parse.scm +++ b/tests/parse.scm @@ -184,10 +184,9 @@ (cook->list (parse-cook "Add a bit of chilli\n\nAdd a bit of hummus\n"))) (test "testMultipleLines" - ;; TODO Fails because of the order of the hash-map - '(recipe (metadata (("Prep Time" . "15 minutes") - ("Cook Time" . "30 minutes"))) - ()) + ;; NOTE The order of the hash-map might fail. + '(recipe (metadata (("Cook Time" . "30 minutes") + ("Prep Time" . "15 minutes"))) ()) (cook->list (parse-cook ">> Prep Time: 15 minutes\n>> Cook Time: 30 minutes\n"))) (test "testMultiWordIngredient" |