Skip to content

Commit b8dcaf7

Browse files
committed
chore: updated test description
1 parent 600cc93 commit b8dcaf7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/randomInt.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe('randomInt()', () => {
1414
expect(value).lessThan(200);
1515
});
1616

17-
it('The returns value is inclusive of min and exclusive of max', () => {
17+
it('The returned value is greater than or equal to min and less than max', () => {
1818
expect(randomInt(0, 1)).toEqual(0);
1919
expect(randomInt(-2, -1)).toEqual(-2);
2020
expect(randomInt(10, 11)).toEqual(10);

0 commit comments

Comments
 (0)