Skip to content

Commit

Permalink
fix the unti test issues
Browse files Browse the repository at this point in the history
  • Loading branch information
DilshanSenarath committed Jan 7, 2025
1 parent 8c5e52c commit 5c00cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/core/src/utils/__tests__/string-utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe("Test isEqualCaseInsensitive function", () => {

test("Should return false for case-insensitive comparison of `test` and `test1`",
() => {
expect(StringUtils.isEqualCaseInsensitive("test", "Test")).toBe(true);
expect(StringUtils.isEqualCaseInsensitive("test", "test1")).toBe(false);
}
);
});

0 comments on commit 5c00cc1

Please sign in to comment.