Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze committed Nov 5, 2016
1 parent 2f4d9fc commit f5990aa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/test/java/io/pivotal/literx/Part03StepVerifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public void countWithVirtualTime() {
expect3600Elements(() -> Flux.interval(Duration.ofSeconds(1)).take(3600));
}

// TODO Expect 3600 elements then complete using the virtual time capabilities provided via StepVerifier.with() and notice how long it takes for running the test
// TODO Expect 3600 elements then complete using the virtual time capabilities provided via StepVerifier.withVirtualTime() and notice how long it takes for running the test
void expect3600Elements(Supplier<Flux<Long>> supplier) {
fail();
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/io/pivotal/literx/Part04Transform.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* Learn how to transform values.
*
* @author Sebastien Deleuze*
* @author Sebastien Deleuze
*/
public class Part04Transform {

Expand Down
4 changes: 2 additions & 2 deletions src/test/java/io/pivotal/literx/Part05Merge.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void mergeWithNoInterleave() {
.verify();
}

// TODO Merge flux1 and flux2 values with no interleave (flux1 values, and then flux2 values)
// TODO Merge flux1 and flux2 values with no interleave (flux1 values and then flux2 values)
Flux<User> mergeFluxWithNoInterleave(Flux<User> flux1, Flux<User> flux2) {
return null;
}
Expand All @@ -66,7 +66,7 @@ public void multipleMonoToFlux() {
.verify();
}

// TODO Create a Flux containing the values of the 2 Mono
// TODO Create a Flux containing the value of mono1 then the value of mono2
Flux<User> createFluxFromMultipleMono(Mono<User> mono1, Mono<User> mono2) {
return null;
}
Expand Down

0 comments on commit f5990aa

Please sign in to comment.