From b8ada84c034f787e9bd0ca2a2c65e7021626103c Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Thu, 10 Oct 2019 14:32:22 -0700 Subject: [PATCH] Fix test failure --- .../firestore/test/unit/local/indexeddb_persistence.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/firestore/test/unit/local/indexeddb_persistence.test.ts b/packages/firestore/test/unit/local/indexeddb_persistence.test.ts index 4ebbe4cb400..2e3238b8bab 100644 --- a/packages/firestore/test/unit/local/indexeddb_persistence.test.ts +++ b/packages/firestore/test/unit/local/indexeddb_persistence.test.ts @@ -777,7 +777,7 @@ describe('IndexedDbSchema: createOrUpgradeDb', () => { // Migrate to v9 and verify that new documents are indexed. await withDb(9, db => { const sdb = new SimpleDb(db); - return sdb.runTransaction('readwrite-idempotent', V8_STORES, txn => { + return sdb.runTransaction('readwrite', V8_STORES, txn => { const remoteDocumentStore = txn.store< DbRemoteDocumentKey, DbRemoteDocument