Skip to content
This repository was archived by the owner on Jan 14, 2024. It is now read-only.

Commit 9580aa8

Browse files
Match lowercase in test descriptions
Co-authored-by: MitchLloyd <mitchelllloyd154@gmail.com>
1 parent 4ece057 commit 9580aa8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mandatory/10-capitalize.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ To run the tests for just this one file, type `npm test -- --testPathPattern 10-
1515
===================================================
1616
*/
1717

18-
test("Capitalize works - case 1", () => {
18+
test("capitalize works - case 1", () => {
1919
expect(capitalize("hello")).toEqual("Hello");
2020
});
2121

22-
test("Capitalize works - case 2", () => {
22+
test("capitalize works - case 2", () => {
2323
expect(capitalize("daniel")).toEqual("Daniel");
2424
});
2525

26-
test("Capitalize works - case 2", () => {
26+
test("capitalize works - case 3", () => {
2727
expect(capitalize("ivina")).toEqual("Ivina");
2828
});

0 commit comments

Comments
 (0)