@@ -30,9 +30,7 @@ public class Day07Test extends PuzzleTest {
3030 @ Tag (TestTag .SAMPLE )
3131 @ DisplayName (TestDisplayName .PART_1_SAMPLE )
3232 public void testSolvePart1Sample () {
33-
34- System .out .print ("1 | sample | " );
35-
33+
3634 // Read input file
3735 List <String > inputs = Input .readStringLines (INPUT_FOLDER , TestFilename .INPUT_FILE_SAMPLE );
3836
@@ -47,9 +45,7 @@ public void testSolvePart1Sample() {
4745 @ Tag (TestTag .INPUT )
4846 @ DisplayName (TestDisplayName .PART_1_INPUT )
4947 public void testSolvePart1Input () {
50-
51- System .out .print ("1 | input | " );
52-
48+
5349 // Read input file
5450 List <String > inputs = Input .readStringLines (INPUT_FOLDER , TestFilename .INPUT_FILE );
5551 BridgeRepair bridgeRepair = new BridgeRepair (inputs );
@@ -63,9 +59,7 @@ public void testSolvePart1Input() {
6359 @ Tag (TestTag .SAMPLE )
6460 @ DisplayName (TestDisplayName .PART_2_SAMPLE )
6561 public void testSolvePart2Sample () {
66-
67- System .out .print ("2 | sample | " );
68-
62+
6963 // Read input file
7064 List <String > inputs = Input .readStringLines (INPUT_FOLDER , TestFilename .INPUT_FILE_SAMPLE );
7165 BridgeRepair bridgeRepair = new BridgeRepair (inputs );
@@ -80,9 +74,7 @@ public void testSolvePart2Sample() {
8074 @ Tag (TestTag .INPUT )
8175 @ DisplayName (TestDisplayName .PART_2_INPUT )
8276 public void testSolvePart2Input () {
83-
84- System .out .print ("2 | input | " );
85-
77+
8678 // Read input file
8779 List <String > inputs = Input .readStringLines (INPUT_FOLDER , TestFilename .INPUT_FILE );
8880 BridgeRepair bridgeRepair = new BridgeRepair (inputs );
0 commit comments