Skip to content

Commit 545fa89

Browse files
committed
Fix spelling error in method name: validateEnqeuedLimboDocs -> validateEnqueuedLimboDocs
1 parent 45802c3 commit 545fa89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/firestore/test/unit/specs/spec_test_runner.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,7 @@ abstract class TestRunner {
10941094
// Always validate that the expected limbo docs match the actual limbo
10951095
// docs
10961096
this.validateActiveLimboDocs();
1097-
this.validateEnqeuedLimboDocs();
1097+
this.validateEnqueuedLimboDocs();
10981098
// Always validate that the expected active targets match the actual
10991099
// active targets
11001100
await this.validateActiveTargets();
@@ -1135,7 +1135,7 @@ abstract class TestRunner {
11351135
);
11361136
}
11371137

1138-
private validateEnqeuedLimboDocs(): void {
1138+
private validateEnqueuedLimboDocs(): void {
11391139
let actualLimboDocs = new SortedSet<DocumentKey>(DocumentKey.comparator);
11401140
this.syncEngine.enqueuedLimboDocumentResolutions().forEach(key => {
11411141
actualLimboDocs = actualLimboDocs.add(key);

0 commit comments

Comments
 (0)