We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c692ca0 commit 1d3bea8Copy full SHA for 1d3bea8
1 file changed
src/vs/base/test/common/hash.test.ts
@@ -65,7 +65,7 @@ suite('Hash', () => {
65
for (let i = 0; i < hashes.length; i++) {
66
assert.equal(hashes[i], hash(candidates[i])); // verify that repeated invocation returns the same hash
67
for (let k = i + 1; k < hashes.length; k++) {
68
- assert.notEqual(hashes[i], hashes[k], `Same hash ${hashes[i]} for ${JSON.stringify(candidates[i])} ans ${JSON.stringify(candidates[k])}`);
+ assert.notEqual(hashes[i], hashes[k], `Same hash ${hashes[i]} for ${JSON.stringify(candidates[i])} and ${JSON.stringify(candidates[k])}`);
69
}
70
71
});
0 commit comments