We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d65749 commit ca9c027Copy full SHA for ca9c027
1 file changed
extensions/memory-core/src/memory/mmr.test.ts
@@ -172,8 +172,7 @@ describe("textSimilarity", () => {
172
expect(textSimilarity("Привет мир", "Привет мир")).toBe(1);
173
// Empty vs empty — preserve identity (both literally equal).
174
expect(textSimilarity("", "")).toBe(1);
175
- // Whitespace-only normalization is case-folded only, not trimmed — keep
176
- // distinct strings distinct.
+ // Normalized equality is case-insensitive for non-tokenized text.
177
expect(textSimilarity("Привет МИР", "привет мир")).toBe(1);
178
});
179
0 commit comments