Skip to content

Commit 91ad848

Browse files
committed
java/2016/20: add answer for test for part 2
1 parent 02445cc commit 91ad848

File tree

1 file changed

+1
-1
lines changed
  • java/src/test/java/com/github/saser/adventofcode/year2016/day20

1 file changed

+1
-1
lines changed

java/src/test/java/com/github/saser/adventofcode/year2016/day20/Day20Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public void part1Actual() throws IOException {
3030
@Test
3131
public void part2Actual() throws IOException {
3232
try (var input = new FileReader("inputs/2016/20")) {
33-
var output = "";
33+
var output = "113";
3434
var result = Day20.part2(input);
3535
Assert.assertEquals("no error", "", result.error);
3636
Assert.assertEquals("correct output", output, result.answer);

0 commit comments

Comments
 (0)