Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong indentation: module inside block #454

Open
khangal opened this issue Dec 3, 2018 · 0 comments
Open

Wrong indentation: module inside block #454

khangal opened this issue Dec 3, 2018 · 0 comments

Comments

@khangal
Copy link

khangal commented Dec 3, 2018

Actual

case System.argv do
  ["--test"] ->
    ExUnit.start()

    defmodule FrequencyTest do
    use ExUnit.Case

    import Frequency

    test "final_frequency" do
    assert repeated_frequency([

    ]) == 2
end
    end
end

Expected

case System.argv do
  ["--test"] ->
    ExUnit.start()

    defmodule FrequencyTest do
      use ExUnit.Case

      import Frequency

      test "final_frequency" do
        assert repeated_frequency([

        ]) == 2
      end
    end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants