Skip to content

Commit 20dfd8b

Browse files
committed
build error
1 parent 13b4b9d commit 20dfd8b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/firestore/src/api/database.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export class Firestore extends LiteFirestore {
121121
// usage throws an exception.
122122
configureFirestore(this);
123123
}
124-
return this._firestoreClient!.terminate();
124+
return null;
125125
}
126126
}
127127

packages/firestore/test/integration/api/database.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ apiDescribe('Database', persistence => {
828828
})
829829
.then(() => storeEvent.awaitEvent())
830830
.then(snap => {
831-
expect(snap.data()).to.deep.equal({});
831+
expect(snap.data()).to.deep.equal(changedData);
832832
// This event could be a metadata change for fromCache as well.
833833
// We comment this line out to reduce flakiness.
834834
// TODO(b/295872012): Figure out a way to check for all scenarios.

0 commit comments

Comments
 (0)