Skip to content

Commit 7e97f34

Browse files
committed
fix failing test
1 parent fe38e79 commit 7e97f34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebase-firestore/src/androidTest/java/com/google/firebase/firestore/TransactionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ public void testRetryOnAlreadyExistsError() {
725725
DocumentSnapshot snapshot = waitFor(doc.get());
726726
assertEquals(2, transactionCallbackCount.get());
727727
assertTrue(snapshot.exists());
728-
assertEquals(map("foo1", "bar1", "foo2", "bar2"), snapshot.getData());
728+
assertEquals(map("foo2", "bar2"), snapshot.getData());
729729
}
730730

731731
@Test

0 commit comments

Comments
 (0)