Skip to content

Commit 48cfeba

Browse files
committed
smallest valid angle
1 parent 401d8cb commit 48cfeba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ test(`should return "Invalid angle" when angle > 360 `, () => {
5050
test(`should return "Straight angle" when angle is the maximum valid value (360)`, () => {
5151
expect(getAngleType(360)).toEqual("Straight angle");
5252
});
53-
53+
// Smallest valid angle(boundary case)
5454
test(`should return "Acute angle" when angle is the minimum valid value (1)`, () => {
5555
expect(getAngleType(1)).toEqual("Acute angle");
5656
});

0 commit comments

Comments
 (0)