Fix locally failing test in FlushingIntegrationTests

This commit is contained in:
Rossen Stoyanchev
2018-06-29 18:09:30 -03:00
parent 3165b3c024
commit 907a306ee2
7 changed files with 47 additions and 37 deletions

View File

@@ -88,7 +88,7 @@ public abstract class AbstractHttpHandlerIntegrationTests {
* set the number of buffered to an arbitrary number greater than N.
* </ul>
*/
public static Flux<Long> interval(Duration period, int count) {
public static Flux<Long> testInterval(Duration period, int count) {
return Flux.interval(period).take(count).onBackpressureBuffer(count);
}