From 52cb67b8a37e13a8f034db1fe0bbf5f4cbc52247 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Tue, 13 Aug 2024 00:05:32 +0200 Subject: tests: hash-map test "fix" --- tests/parse.scm | 7 +++---- 1 file 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" -- cgit v1.2.3