Skip to content

Commit ead85b1

Browse files
akarnokdviktorklang
authored andcommitted
Adjust doesCoordinatedEmission error message
1 parent 5a998cc commit ead85b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tck/src/main/java/org/reactivestreams/tck/IdentityProcessorVerification.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -464,13 +464,13 @@ public TestSetup apply(Long aLong) throws Throwable {
464464

465465
expectRequest(env.defaultTimeoutMillis(),
466466
"If the Processor coordinates requests/emissions when having multiple Subscribers"
467-
+ " at once, please override doesCoordinatedEmission() in this "
467+
+ " at once, please override doesCoordinatedEmission() to return true in this "
468468
+ "IdentityProcessorVerification to allow this test to pass.");
469469

470470
final T x = sendNextTFromUpstream();
471471
expectNextElement(sub1, x,
472472
"If the Processor coordinates requests/emissions when having multiple Subscribers"
473-
+ " at once, please override doesCoordinatedEmission() in this "
473+
+ " at once, please override doesCoordinatedEmission() to return true in this "
474474
+ "IdentityProcessorVerification to allow this test to pass.");
475475

476476
sub1.request(1);
@@ -757,7 +757,7 @@ public TestSetup apply(Long subscribers) throws Throwable {
757757
final T z = sendNextTFromUpstream();
758758
expectNextElement(sub1, z,
759759
"If the Processor coordinates requests/emissions when having multiple Subscribers"
760-
+ " at once, please override doesCoordinatedEmission() in this "
760+
+ " at once, please override doesCoordinatedEmission() to return true in this "
761761
+ "IdentityProcessorVerification to allow this test to pass.");
762762
sub2.expectNone(); // since sub2 hasn't requested anything yet
763763

0 commit comments

Comments
 (0)