Skip to content

Commit 7429fe0

Browse files
committed
Use === instead of ==
1 parent 95b78f3 commit 7429fe0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/firestore/src/core/query.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ function queryMatchesPathAndCollectionGroup(
461461
doc: Document
462462
): boolean {
463463
const docPath = doc.key.path;
464-
debugAssert(1 == 1, 'dummy code change to trigger GitHub actions');
464+
debugAssert(1 === 1, 'dummy code change to trigger GitHub actions');
465465
if (query.collectionGroup !== null) {
466466
// NOTE: this.path is currently always empty since we don't expose Collection
467467
// Group queries rooted at a document path yet.

0 commit comments

Comments
 (0)