diff --git a/lib/style/configs.ex b/lib/style/configs.ex index f9d51fa3..5a4d476a 100644 --- a/lib/style/configs.ex +++ b/lib/style/configs.ex @@ -70,7 +70,6 @@ defmodule Styler.Style.Configs do |> Enum.reverse() end) |> Style.fix_line_numbers(List.first(rest)) - |> dbg() assignments = assignments |> Enum.reverse() |> Style.reset_newlines() diff --git a/test/style/configs_test.exs b/test/style/configs_test.exs index 9a15805d..3a36dd6a 100644 --- a/test/style/configs_test.exs +++ b/test/style/configs_test.exs @@ -122,7 +122,7 @@ defmodule Styler.Style.ConfigsTest do ) end - test "ignores things that look like config/2,3" do + test "ignores things that look like config/1" do assert_style """ import Config @@ -132,9 +132,4 @@ defmodule Styler.Style.ConfigsTest do config :c, :d """ end - - test "non config / assignment calls create new stanzas" - test "non-configs" - - test "comments :/" end