File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
src/test/java/com/google/firebase/cloud Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 393393 <dependency >
394394 <groupId >com.google.cloud</groupId >
395395 <artifactId >libraries-bom</artifactId >
396- <version >8.0 .0</version >
396+ <version >20.4 .0</version >
397397 <type >pom</type >
398398 <scope >import</scope >
399399 </dependency >
Original file line number Diff line number Diff line change @@ -69,11 +69,9 @@ public void testFirestoreOptions() throws IOException {
6969 .build ());
7070 Firestore firestore = FirestoreClient .getFirestore (app );
7171 assertEquals ("explicit-project-id" , firestore .getOptions ().getProjectId ());
72- assertTrue (firestore .getOptions ().areTimestampsInSnapshotsEnabled ());
7372
7473 firestore = FirestoreClient .getFirestore ();
7574 assertEquals ("explicit-project-id" , firestore .getOptions ().getProjectId ());
76- assertTrue (firestore .getOptions ().areTimestampsInSnapshotsEnabled ());
7775 }
7876
7977 @ Test
@@ -88,13 +86,11 @@ public void testFirestoreOptionsOverride() throws IOException {
8886 .build ());
8987 Firestore firestore = FirestoreClient .getFirestore (app );
9088 assertEquals ("explicit-project-id" , firestore .getOptions ().getProjectId ());
91- assertTrue (firestore .getOptions ().areTimestampsInSnapshotsEnabled ());
9289 assertSame (ImplFirebaseTrampolines .getCredentials (app ),
9390 firestore .getOptions ().getCredentialsProvider ().getCredentials ());
9491
9592 firestore = FirestoreClient .getFirestore ();
9693 assertEquals ("explicit-project-id" , firestore .getOptions ().getProjectId ());
97- assertTrue (firestore .getOptions ().areTimestampsInSnapshotsEnabled ());
9894 assertSame (ImplFirebaseTrampolines .getCredentials (app ),
9995 firestore .getOptions ().getCredentialsProvider ().getCredentials ());
10096 }
You can’t perform that action at this time.
0 commit comments