diff --git a/lib/koans/05_maps.ex b/lib/koans/05_maps.ex index 77c02f2..4883777 100644 --- a/lib/koans/05_maps.ex +++ b/lib/koans/05_maps.ex @@ -4,7 +4,7 @@ defmodule Maps do @person %{ name: "Jon", last_name: "Snow", - age: 27 + age: 27, } koan "Maps represent structured data, like a person" do diff --git a/test/koans/enum_koans_test.exs b/test/koans/enum_koans_test.exs index 9ed3a63..da42903 100644 --- a/test/koans/enum_koans_test.exs +++ b/test/koans/enum_koans_test.exs @@ -19,7 +19,7 @@ defmodule EnumTests do 2, nil, :no_such_element, - 6 + 6, ] test_all(Enums, answers) diff --git a/test/koans/equalities_koan_test.exs b/test/koans/equalities_koan_test.exs index 7b75959..f350cd5 100644 --- a/test/koans/equalities_koan_test.exs +++ b/test/koans/equalities_koan_test.exs @@ -10,7 +10,7 @@ defmodule EqualitiesTests do 2, 1, 4, - 2 + 2, ] test_all(Equalities, answers) diff --git a/test/koans/functions_koans_test.exs b/test/koans/functions_koans_test.exs index 7b6f1b6..620321c 100644 --- a/test/koans/functions_koans_test.exs +++ b/test/koans/functions_koans_test.exs @@ -14,7 +14,7 @@ defmodule FunctionsTests do 6, 6, 100, - "Full Name" + "Full Name", ] test_all(Functions, answers) diff --git a/test/koans/maps_koans_test.exs b/test/koans/maps_koans_test.exs index 24c49a9..1856970 100644 --- a/test/koans/maps_koans_test.exs +++ b/test/koans/maps_koans_test.exs @@ -14,7 +14,7 @@ defmodule MapsTests do [:last_name, :name], %{:name => "Jon", :last_name => "Snow"}, {:ok, "Baratheon"}, - %{ :name => "Jon", :last_name => "Snow"} + %{ :name => "Jon", :last_name => "Snow"}, ] test_all(Maps, answers) diff --git a/test/koans/patterns_koans_test.exs b/test/koans/patterns_koans_test.exs index b1c2e9a..3905cb5 100644 --- a/test/koans/patterns_koans_test.exs +++ b/test/koans/patterns_koans_test.exs @@ -15,7 +15,7 @@ defmodule PatternsTests do [1,2,3], {:multiple, ["Meow", "Woof", "Eh?",]}, "dog", - "Max" + "Max", ] test_all(PatternMatching, answers) diff --git a/test/koans/processes_koans_test.exs b/test/koans/processes_koans_test.exs index 45be268..e2aaf18 100644 --- a/test/koans/processes_koans_test.exs +++ b/test/koans/processes_koans_test.exs @@ -15,7 +15,7 @@ defmodule ProcessesTests do true, false, {:exited, :normal}, - {:exited, :normal} + {:exited, :normal}, ] test_all(Processes, answers) diff --git a/test/koans/strings_koan_test.exs b/test/koans/strings_koan_test.exs index ea180b0..cfc5f40 100644 --- a/test/koans/strings_koan_test.exs +++ b/test/koans/strings_koan_test.exs @@ -12,7 +12,7 @@ defmodule StringTests do "banana", "banana", "String", - "listen" + "listen", ] test_all(Strings, answers) diff --git a/test/koans/tasks_koans_test.exs b/test/koans/tasks_koans_test.exs index d91d480..76b632d 100644 --- a/test/koans/tasks_koans_test.exs +++ b/test/koans/tasks_koans_test.exs @@ -9,7 +9,7 @@ defmodule TasksTests do nil, false, 9, - [1,4,9,16] + [1,4,9,16], ] test_all(Tasks, answers) diff --git a/test/koans/tuples_koans_test.exs b/test/koans/tuples_koans_test.exs index 126b772..5b95ed6 100644 --- a/test/koans/tuples_koans_test.exs +++ b/test/koans/tuples_koans_test.exs @@ -11,7 +11,7 @@ defmodule TupleTests do {:a, :new_thing, "hi"}, {"Huey", "Dewey", "Louie"}, {:this, :is, :awesome}, - [:this, :can, :be, :a, :list] + [:this, :can, :be, :a, :list], ] test_all(Tuples, answers)