Update delete_at example to also use non-numeric values

This commit is contained in:
Jay Hayes
2016-06-13 09:29:14 -05:00
parent 43f832d4e3
commit f95086b14d
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ defmodule Lists do
end end
koan "Precision is also valued" do koan "Precision is also valued" do
assert List.delete_at([1, 2, 3], 1) == ___ assert List.delete_at([:a, :b, :c], 2) == ___
end end
koan "Replication is also possible" do koan "Replication is also possible" do

View File

@@ -8,7 +8,7 @@ defmodule ListsTests do
[1, 2, :a, "b"], [1, 2, :a, "b"],
[1,2], [1,2],
[:a, :c], [:a, :c],
[1,3], [:a, :b],
["life", "life", "life"], ["life", "life", "life"],
[1, 2, 3, 4, 5], [1, 2, 3, 4, 5],
[1, 4, 2, 3], [1, 4, 2, 3],