Skip to content

Commit aa70d16

Browse files
Update remote_document_cache.test.ts
1 parent 89ae217 commit aa70d16

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/firestore/test/unit/local/remote_document_cache.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ describe('IndexedDbRemoteDocumentCache', () => {
154154
assertMatches([doc('a/2', 2, DOC_DATA), doc('a/3', 3, DOC_DATA)], results);
155155
});
156156

157-
it('cen get next documents from collection group with document key offset', async () => {
157+
it('can get next documents from collection group with document key offset', async () => {
158158
await cache.addEntries([
159159
doc('a/1', 1, DOC_DATA),
160160
doc('a/2', 1, DOC_DATA),
@@ -193,7 +193,7 @@ describe('IndexedDbRemoteDocumentCache', () => {
193193
assertMatches([doc('a/1', 1, DOC_DATA), doc('a/2', 2, DOC_DATA)], results);
194194
});
195195

196-
it('cen get next documents from collection group with limit', async () => {
196+
it('can get next documents from collection group with limit', async () => {
197197
await cache.addEntries([
198198
doc('a/1', 1, DOC_DATA),
199199
doc('b/2/a/2', 2, DOC_DATA),
@@ -211,7 +211,7 @@ describe('IndexedDbRemoteDocumentCache', () => {
211211
);
212212
});
213213

214-
it('cen get next documents from collection group with read time offset', async () => {
214+
it('can get next documents from collection group with read time offset', async () => {
215215
await cache.addEntries([
216216
doc('a/1', 1, DOC_DATA),
217217
doc('a/2', 2, DOC_DATA),
@@ -226,7 +226,7 @@ describe('IndexedDbRemoteDocumentCache', () => {
226226
assertMatches([doc('a/2', 2, DOC_DATA), doc('a/3', 3, DOC_DATA)], results);
227227
});
228228

229-
it('cen get next documents from collection group with document key offset', async () => {
229+
it('can get next documents from collection group with document key offset', async () => {
230230
await cache.addEntries([
231231
doc('a/1', 1, DOC_DATA),
232232
doc('a/2', 1, DOC_DATA),

0 commit comments

Comments
 (0)