We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28f8845 commit 5324096Copy full SHA for 5324096
firebase-firestore/src/test/java/com/google/firebase/firestore/pipeline/LimitTests.kt
@@ -161,7 +161,11 @@ internal class LimitTests {
161
fun `limit max duplicated`(): Unit = runBlocking {
162
val documents = createDocs()
163
val pipeline =
164
- RealtimePipelineSource(db).collection("k").limit(Int.MAX_VALUE).limit(Int.MAX_VALUE).limit(Int.MAX_VALUE)
+ RealtimePipelineSource(db)
165
+ .collection("k")
166
+ .limit(Int.MAX_VALUE)
167
168
169
170
val result = runPipeline(db, pipeline, flowOf(*documents.toTypedArray())).toList()
171
assertThat(result).hasSize(4)
0 commit comments