Skip to content

Commit 24bc0d7

Browse files
committed
Update comment ".. to numbers ending in 0, 4-9."
1 parent f14ec50 commit 24bc0d7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Sprint-3/2-practice-tdd/get-ordinal-number.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,10 @@ test("append 'th' to numbers ending in 11, 12, 13", () => {
3535
expect(getOrdinalNumber(113)).toEqual("113th");
3636
});
3737

38-
// All other numbers: should append 'th'
38+
// ... to numbers ending in 0, 4-9.
3939
test("append 'th' to all other numbers", () => {
4040
expect(getOrdinalNumber(4)).toEqual("4th");
4141
expect(getOrdinalNumber(10)).toEqual("10th");
42-
expect(getOrdinalNumber(14)).toEqual("14th");
4342
expect(getOrdinalNumber(0)).toEqual("0th");
4443
});
4544

0 commit comments

Comments
 (0)