summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2020-01-04 12:49:18 +0100
committerJosé Valim <jose.valim@plataformatec.com.br>2020-01-04 12:52:45 +0100
commit6760cdbf141721ecd824d7b4bcc831fa5f6c3b06 (patch)
tree647ac2f328a26c68d7c270f761aa83ad83066d5e
parent383598b4487a645776e384fd42a3630b7783fdec (diff)
downloadelixir-6760cdbf141721ecd824d7b4bcc831fa5f6c3b06.tar.gz
Run the formatter
-rw-r--r--lib/elixir/test/elixir/typespec_test.exs8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/elixir/test/elixir/typespec_test.exs b/lib/elixir/test/elixir/typespec_test.exs
index e9f1257f4..e66eb575c 100644
--- a/lib/elixir/test/elixir/typespec_test.exs
+++ b/lib/elixir/test/elixir/typespec_test.exs
@@ -1029,14 +1029,18 @@ defmodule TypespecTest do
] = SpecModuleAttributes.spec4()
assert [
- {:callback, {:when, _, [{:"::", _, [{:callback2, _, _}, {:var, _, _}]}, [var: {:boolean, _, _}]]},
+ {:callback,
+ {:when, _,
+ [{:"::", _, [{:callback2, _, _}, {:var, _, _}]}, [var: {:boolean, _, _}]]},
{SpecModuleAttributes, _}},
{:callback, {:"::", _, [{:callback1, _, _}, {:integer, _, _}]},
{SpecModuleAttributes, _}}
] = SpecModuleAttributes.callback()
assert [
- {:macrocallback, {:when, _, [{:"::", _, [{:macrocallback2, _, _}, {:var, _, _}]}, [var: {:boolean, _, _}]]},
+ {:macrocallback,
+ {:when, _,
+ [{:"::", _, [{:macrocallback2, _, _}, {:var, _, _}]}, [var: {:boolean, _, _}]]},
{SpecModuleAttributes, _}},
{:macrocallback, {:"::", _, [{:macrocallback1, _, _}, {:integer, _, _}]},
{SpecModuleAttributes, _}}