fix: remove extra solve line from puzzle case
This commit is contained in:
parent
42a3de4f5e
commit
dba3bce679
1 changed files with 0 additions and 1 deletions
|
@ -13,7 +13,6 @@ defmodule AdventOfCode.PuzzleCase do
|
||||||
{:ok, stream_pid} = StringIO.open(input)
|
{:ok, stream_pid} = StringIO.open(input)
|
||||||
stream_input = IO.stream(stream_pid, :line)
|
stream_input = IO.stream(stream_pid, :line)
|
||||||
actual_output = AdventOfCode.PuzzleSolver.solve(@module, stream_input)
|
actual_output = AdventOfCode.PuzzleSolver.solve(@module, stream_input)
|
||||||
@module.solve(stream_input)
|
|
||||||
assert actual_output == desired_output
|
assert actual_output == desired_output
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue