Skip to content

Commit a89bdd6

Browse files
Remove inaccurate comment in right angle test
1 parent e9983db commit a89bdd6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ test(`should return "Acute angle" when (0 < angle < 90)`, () => {
1212
expect(getAngleType(89)).toEqual("Acute angle");
1313
});
1414
test(`should return "Right angle" when (angle = 90)`, () => {
15-
// Test various acute angles, including boundary cases
1615
expect(getAngleType(90)).toEqual("Right angle");
1716
});
1817
test(`should return"Obtuse angle" when (90 < angle< 180)`, () => {

0 commit comments

Comments
 (0)