Skip to content

Commit afcefb3

Browse files
authored
Run formatter
1 parent fb5aabf commit afcefb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: lib/elixir/test/elixir/enum_test.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -396,8 +396,8 @@ defmodule EnumTest do
396396
test "into/2" do
397397
assert Enum.into([a: 1, b: 2], %{}) == %{a: 1, b: 2}
398398
assert Enum.into([a: 1, b: 2], %{c: 3}) == %{a: 1, b: 2, c: 3}
399-
assert Enum.into(MapSet.new([a: 1, b: 2]), %{}) == %{a: 1, b: 2}
400-
assert Enum.into(MapSet.new([a: 1, b: 2]), %{c: 3}) == %{a: 1, b: 2, c: 3}
399+
assert Enum.into(MapSet.new(a: 1, b: 2), %{}) == %{a: 1, b: 2}
400+
assert Enum.into(MapSet.new(a: 1, b: 2), %{c: 3}) == %{a: 1, b: 2, c: 3}
401401
assert Enum.into(%{a: 1, b: 2}, []) == [a: 1, b: 2]
402402
assert Enum.into(1..3, []) == [1, 2, 3]
403403
assert Enum.into(["H", "i"], "") == "Hi"

0 commit comments

Comments
 (0)