File tree Expand file tree Collapse file tree
pythagorean-triplet/src/test/java
sgf-parsing/src/test/java Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ public void tripletsWhoseSumIs840() {
9797
9898 @ Ignore ("Remove to run test" )
9999 @ Test
100- public void tripletsWhoseSumIs840 () {
100+ public void tripletsWhoseSumIs840WithFactorsLessThanOrEqualTo370 () {
101101 List <PythagoreanTriplet > actual
102102 = PythagoreanTriplet
103103 .makeTripletsList ()
@@ -134,7 +134,7 @@ public void tripletsWhoseSumIs30000() {
134134
135135 @ Ignore ("Remove to run test" )
136136 @ Test
137- public void tripletsWhoseSumIs30000 () {
137+ public void tripletsWhoseSumIs30000WithFactorsLessThanOrEqualTo12500 () {
138138 List <PythagoreanTriplet > actual
139139 = PythagoreanTriplet
140140 .makeTripletsList ()
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ public void multiplePropertyValues() throws SgfParsingException {
128128 @ Ignore ("Remove to run test" )
129129 public void escapedProperty () throws SgfParsingException {
130130 String input = "(;A[\\ ]b\n c\n d\t \t e \n \\ ]])" ;
131- SgfNode expected = new SgfNode (Map .of ("A" , List .of ("]b\n c\n d e \n ]" )));
131+ SgfNode expected = new SgfNode (Map .of ("A" , List .of ("]b\n c\n d\t \t e \n ]" )));
132132 SgfNode actual = new SgfParsing ().parse (input );
133133 assertEquals (expected , actual );
134134 }
You can’t perform that action at this time.
0 commit comments