Skip to content

Commit

Permalink
fixup! WIP: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bettio committed Aug 14, 2024
1 parent af6b3fe commit 982d425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/libs/exavmlib/Tests.ex
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ defmodule Tests do
defp test_enum() do
[0, 2, 4] = Enum.map([0, 1, 2], fn(x) -> x * 2 end)
6 = Enum.reduce([1, 2, 3], 0, fn(x, acc) -> acc + x end)
#[2, 3] = Enum.slice([1, 2, 3], 1, 2)
[2, 3] = Enum.slice([1, 2, 3], 1, 2)

[0, 2, 4] = Enum.map(MapSet.new([0, 1, 2]), fn(x) -> x * 2 end)
6 = Enum.reduce(MapSet.new([1, 2, 3]), 0, fn(x, acc) -> acc + x end)
Expand Down

0 comments on commit 982d425

Please sign in to comment.