summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2024-08-13 00:05:32 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2024-08-13 00:05:32 +0200
commit52cb67b8a37e13a8f034db1fe0bbf5f4cbc52247 (patch)
tree9975208e097151771a27a4816ab80e00f5a81df3 /tests
parent3e4bf105335b4ee129823b7561f3bec320451fc3 (diff)
tests: hash-map test "fix"
Diffstat (limited to 'tests')
-rw-r--r--tests/parse.scm7
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"