From f999d6c573136ded1ddc45854c3dfa430b0d22bd Mon Sep 17 00:00:00 2001 From: Shashwat Ganesh Date: Thu, 4 Jun 2020 22:55:14 +0530 Subject: [PATCH] Update the comprehensions test to match the actual koan --- test/koans/comprehensions_koans_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/koans/comprehensions_koans_test.exs b/test/koans/comprehensions_koans_test.exs index bcf7498..22f056f 100644 --- a/test/koans/comprehensions_koans_test.exs +++ b/test/koans/comprehensions_koans_test.exs @@ -9,7 +9,7 @@ defmodule ComprehensionsTests do ["Hello World", "Apple Pie"], ["little dogs", "little cats", "big dogs", "big cats"], [4, 5, 6], - ["Apple Pie", "Pecan Pie", "Pumpkin Pie"], + %{"Pecan" => "Pecan Pie", "Pumpkin" => "Pumpkin Pie"} ] test_all(Comprehensions, answers)