Skip to content

Commit 9d98910

Browse files
committed
remove console.log pushed accidently
1 parent 39b6f0c commit 9d98910

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

packages/firestore/src/remote/bloom_filter.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,7 @@ export class BloomFilter {
102102
if (this.bitCount === 0) {
103103
return false;
104104
}
105-
console.log("value to Hash:",value)
106105
const md5HashedValue = getMd5HashValue(value);
107-
console.log("Hashed value: ", md5HashedValue)
108106
const [hash1, hash2] = get64BitUints(md5HashedValue);
109107
for (let i = 0; i < this.hashCount; i++) {
110108
const index = this.getBitIndex(hash1, hash2, i);

packages/firestore/test/unit/remote/bloom_filter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ describe('BloomFilter', () => {
9090
expect(bloomFilter.mightContain('def')).to.be.false;
9191
});
9292

93-
it.only('mightContain should always return false for empty string', () => {
93+
it('mightContain should always return false for empty string', () => {
9494
const emptyBloomFilter = new BloomFilter(new Uint8Array(0), 0, 0);
9595
const nonEmptyBloomFilter = new BloomFilter(
9696
new Uint8Array([255, 255, 255]),

0 commit comments

Comments
 (0)