File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
firebase-firestore/src/test/java/com/google/firebase/firestore/local Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ public void testCombinesIndexedWithNonIndexedResults() throws Exception {
246
246
TimeUnit .MILLISECONDS .convert (
247
247
(beforeAutoEnd - beforeAutoStart ), TimeUnit .NANOSECONDS );
248
248
totalBeforeIndex += (beforeAutoEnd - beforeAutoStart );
249
- totalDocumentCount += counterWithoutIndex .getDocumentCount ();
249
+ totalDocumentCount += counterWithoutIndex .getDocumentReadCount ();
250
250
assertEquals (portion * totalSetCount , results .size ());
251
251
252
252
QueryContext counterWithIndex = new QueryContext ();
@@ -268,7 +268,7 @@ public void testCombinesIndexedWithNonIndexedResults() throws Exception {
268
268
+ numOfFields
269
269
+ " fields.\n "
270
270
+ "Weight result for without auto indexing is "
271
- + without * counterWithoutIndex .getDocumentCount ()
271
+ + without * counterWithoutIndex .getDocumentReadCount ()
272
272
+ ". And weight result for auto indexing is "
273
273
+ with * results .size ());
274
274
}
You can’t perform that action at this time.
0 commit comments