1
0
Fork 0

fix: remove extra solve line from puzzle case

This commit is contained in:
Sloane Perrault 2022-09-21 09:19:53 -04:00
parent 42a3de4f5e
commit dba3bce679

View file

@ -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