@@ -3752,7 +3752,8 @@ defmodule ElixirLS.LanguageServer.Providers.Completion.SuggestionTest do
3752
3752
assert suggestion . type_spec == type_spec
3753
3753
assert suggestion . origin == origin
3754
3754
3755
- origin = "ElixirSenseExample.ModuleWithTypespecs.Local.func_with_options_var_defined_in_when"
3755
+ origin =
3756
+ "ElixirSenseExample.ModuleWithTypespecs.Local.func_with_options_var_defined_in_when"
3756
3757
3757
3758
buffer = "Local.func_with_options_var_defined_in_when("
3758
3759
suggestion = suggestion_by_name ( "local_o" , buffer )
@@ -3866,7 +3867,8 @@ defmodule ElixirLS.LanguageServer.Providers.Completion.SuggestionTest do
3866
3867
assert suggestion . type_spec ==
3867
3868
"pos_integer()\n | :second\n | :millisecond\n | :microsecond\n | :nanosecond\n | :native\n | :perf_counter\n | :seconds\n | :milli_seconds\n | :micro_seconds\n | :nano_seconds"
3868
3869
3869
- assert suggestion . origin == "ElixirSenseExample.ModuleWithTypespecs.Local.func_with_erlang_type_options"
3870
+ assert suggestion . origin ==
3871
+ "ElixirSenseExample.ModuleWithTypespecs.Local.func_with_erlang_type_options"
3870
3872
end
3871
3873
3872
3874
test "remote aliased type" do
@@ -3970,7 +3972,8 @@ defmodule ElixirLS.LanguageServer.Providers.Completion.SuggestionTest do
3970
3972
test "format type spec" do
3971
3973
buffer = "Local.func_with_options("
3972
3974
3973
- assert suggestion_by_name ( "large_o" , buffer ) . type_spec == "pid() | port() | (registered_name :: atom()) | {registered_name :: atom(), node()}"
3975
+ assert suggestion_by_name ( "large_o" , buffer ) . type_spec ==
3976
+ "pid() | port() | (registered_name :: atom()) | {registered_name :: atom(), node()}"
3974
3977
end
3975
3978
3976
3979
test "params with default args" do
0 commit comments