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 393
393
<dependency >
394
394
<groupId >com.google.cloud</groupId >
395
395
<artifactId >libraries-bom</artifactId >
396
- <version >8.0 .0</version >
396
+ <version >20.4 .0</version >
397
397
<type >pom</type >
398
398
<scope >import</scope >
399
399
</dependency >
Original file line number Diff line number Diff line change @@ -69,11 +69,9 @@ public void testFirestoreOptions() throws IOException {
69
69
.build ());
70
70
Firestore firestore = FirestoreClient .getFirestore (app );
71
71
assertEquals ("explicit-project-id" , firestore .getOptions ().getProjectId ());
72
- assertTrue (firestore .getOptions ().areTimestampsInSnapshotsEnabled ());
73
72
74
73
firestore = FirestoreClient .getFirestore ();
75
74
assertEquals ("explicit-project-id" , firestore .getOptions ().getProjectId ());
76
- assertTrue (firestore .getOptions ().areTimestampsInSnapshotsEnabled ());
77
75
}
78
76
79
77
@ Test
@@ -88,13 +86,11 @@ public void testFirestoreOptionsOverride() throws IOException {
88
86
.build ());
89
87
Firestore firestore = FirestoreClient .getFirestore (app );
90
88
assertEquals ("explicit-project-id" , firestore .getOptions ().getProjectId ());
91
- assertTrue (firestore .getOptions ().areTimestampsInSnapshotsEnabled ());
92
89
assertSame (ImplFirebaseTrampolines .getCredentials (app ),
93
90
firestore .getOptions ().getCredentialsProvider ().getCredentials ());
94
91
95
92
firestore = FirestoreClient .getFirestore ();
96
93
assertEquals ("explicit-project-id" , firestore .getOptions ().getProjectId ());
97
- assertTrue (firestore .getOptions ().areTimestampsInSnapshotsEnabled ());
98
94
assertSame (ImplFirebaseTrampolines .getCredentials (app ),
99
95
firestore .getOptions ().getCredentialsProvider ().getCredentials ());
100
96
}
You can’t perform that action at this time.
0 commit comments