We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02445cc commit 91ad848Copy full SHA for 91ad848
java/src/test/java/com/github/saser/adventofcode/year2016/day20/Day20Test.java
@@ -30,7 +30,7 @@ public void part1Actual() throws IOException {
30
@Test
31
public void part2Actual() throws IOException {
32
try (var input = new FileReader("inputs/2016/20")) {
33
- var output = "";
+ var output = "113";
34
var result = Day20.part2(input);
35
Assert.assertEquals("no error", "", result.error);
36
Assert.assertEquals("correct output", output, result.answer);
0 commit comments