Skip to content

Commit 54bebd7

Browse files
committed
Fixed bug in test that was masking a problem being solved. Fixes #27
The indentation in the expected output was wrong (my fault) in a couple of ways. Who knows how long this test should have been passing but wasn't. Who cares though, this is the last known-fail test! This means this project is somewhat caught up now on its backlog of issues.
1 parent bf2d9f1 commit 54bebd7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/elixir-mode-indentation-tests.el

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -208,23 +208,23 @@ has_something(x) &&
208208
")
209209

210210
(elixir-def-indentation-test indents-last-commented-line
211-
(:expected-result :failed) ; #27
211+
()
212212
"
213213
defmodule Foo
214-
def bar do
215-
2
216-
end
214+
def bar do
215+
2
216+
end
217217
218-
# last line
218+
# last line
219219
end
220220
"
221221
"
222-
defmodule Foo
222+
defmodule Foo
223223
def bar do
224224
2
225225
end
226226
227-
# last line
227+
# last line
228228
end
229229
")
230230

0 commit comments

Comments
 (0)