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

Commit bd4d173

Browse files
Match lowercase in test descriptions
Co-authored-by: MitchLloyd <[email protected]>
1 parent 21eed7e commit bd4d173

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mandatory/10-capitalize.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ 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)