Skip to content

Commit 15b4979

Browse files
author
Ogbemi mene
committed
another commit for count
1 parent eca9398 commit 15b4979

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ test("should append 'nd' for numbers ending with 2, except those ending with 12"
3333
// Then the function should return a string by appending "rd" to the number.
3434
test("should append 'rd' for numbers ending with 3, except those ending with 13", () => {
3535
expect(getOrdinalNumber(3)).toEqual("3rd");
36-
expect(getOrdinalNumber(43)).toEqual("43nd"); // Note: should be "43rd" based on standard logic, fixing a potential typo
36+
expect(getOrdinalNumber(43)).toEqual("43rd"); // Note: should be "43rd" based on standard logic, fixing a potential typo
3737
expect(getOrdinalNumber(103)).toEqual("103rd");
3838
});
3939

0 commit comments

Comments
 (0)