Skip to content

Commit 1d3bea8

Browse files
committed
fix typo
1 parent c692ca0 commit 1d3bea8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/base/test/common/hash.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ suite('Hash', () => {
6565
for (let i = 0; i < hashes.length; i++) {
6666
assert.equal(hashes[i], hash(candidates[i])); // verify that repeated invocation returns the same hash
6767
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])}`);
68+
assert.notEqual(hashes[i], hashes[k], `Same hash ${hashes[i]} for ${JSON.stringify(candidates[i])} and ${JSON.stringify(candidates[k])}`);
6969
}
7070
}
7171
});

0 commit comments

Comments
 (0)