File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/practice/triangle/src/test/java Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ public void verySmallTrianglesCanBeIsosceles() throws TriangleException {
126126
127127 @ Disabled ("Remove to run test" )
128128 @ Test
129- @ DisplayName ("" )
129+ @ DisplayName ("no sides are equal " )
130130 public void scaleneTrianglesHaveNoEqualSides () throws TriangleException {
131131 Triangle triangle = new Triangle (5 , 4 , 6 );
132132
@@ -135,7 +135,7 @@ public void scaleneTrianglesHaveNoEqualSides() throws TriangleException {
135135
136136 @ Disabled ("Remove to run test" )
137137 @ Test
138- @ DisplayName ("no sides are equal" )
138+ @ DisplayName ("all sides are equal" )
139139 public void allSidesEqualAreNotScalene () throws TriangleException {
140140 Triangle triangle = new Triangle (4 , 4 , 4 );
141141
You can’t perform that action at this time.
0 commit comments