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 6ce298c commit bf22959Copy full SHA for bf22959
rest/src/test/scala/io/udash/rest/SomeServerApiImpl.scala
@@ -18,7 +18,7 @@ final class SomeServerApiImpl {
18
19
@GET
20
def streamBinary(chunkSize: Int): Observable[Array[Byte]] = {
21
- val content = "HelloWorld".getBytes
+ val content = ("HelloWorld" * 100).getBytes
22
Observable.fromIterable(content.grouped(chunkSize).toSeq)
23
}
24
rest/src/test/scala/io/udash/rest/raw/ServerImplApiTest.scala
@@ -341,7 +341,7 @@ class ServerImplApiTest extends AnyFunSuite with ScalaFutures {
341
.map(bytes => new String(bytes))
342
.toListL.runToFuture
343
344
- chunksFuture.futureValue.mkString("") == "HelloWorld"
+ chunksFuture.futureValue.mkString("") == "HelloWorld" * 100
345
346
)
347
0 commit comments