Skip to content

Commit

Permalink
Format the code
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewDryga committed May 17, 2024
1 parent ed14568 commit f39af6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/confex/type_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ defmodule Confex.TypeTest do
end

test "cast charlist" do
assert Type.cast("my_atom", :charlist) == {:ok, 'my_atom'}
assert Type.cast("Myatom", :charlist) == {:ok, 'Myatom'}
assert Type.cast("___@@*@-", :charlist) == {:ok, '___@@*@-'}
assert Type.cast("my_atom", :charlist) == {:ok, ~c"my_atom"}
assert Type.cast("Myatom", :charlist) == {:ok, ~c"Myatom"}
assert Type.cast("___@@*@-", :charlist) == {:ok, ~c"___@@*@-"}
end

test "cast with {m,f,a}" do
Expand Down

0 comments on commit f39af6d

Please sign in to comment.