fix test expectation

This commit is contained in:
2023-04-27 13:33:29 +10:00
parent 37a738c094
commit e2dee426bf

View File

@@ -9,6 +9,6 @@ describe("toTitleCase()", () => {
it("should return a converted title case string and spaces", () => { it("should return a converted title case string and spaces", () => {
const result = toTitleCase("titlecase_and_more"); const result = toTitleCase("titlecase_and_more");
expect(result).toEqual("Titlecase and more"); expect(result).toEqual("Titlecase And More");
}); });
}); });