Skip to content

Commit f7b9cfb

Browse files
committed
AssertTrue instead
1 parent bf6d4b5 commit f7b9cfb

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/FirestoreTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1060,7 +1060,7 @@ public void testMaintainsPersistenceAfterRestarting() {
10601060
testFirestore(provider().projectId(), Level.DEBUG, newTestSettings(), "dbPersistenceKey");
10611061
DocumentReference docRef2 = firestore2.document(docRef.getPath());
10621062
DocumentSnapshot doc = waitFor(docRef2.get());
1063-
assertEquals(true, doc.exists());
1063+
assertTrue(doc.exists());
10641064
}
10651065

10661066
@Test

0 commit comments

Comments
 (0)