Skip to content

Commit e403531

Browse files
akarnokdviktorklang
authored andcommitted
Fix a typo in spec101 error message (#475)
1 parent 4db62a5 commit e403531

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public void run(Publisher<T> pub) throws InterruptedException {
223223
sub.request(2);
224224
sub.nextElements(3, env.defaultTimeoutMillis(), String.format("Publisher %s produced less than 3 elements after two respective `request` calls", pub));
225225

226-
sub.expectNone(String.format("Publisher %sproduced unrequested ", pub));
226+
sub.expectNone(String.format("Publisher %s produced unrequested ", pub));
227227
} finally {
228228
sub.cancel();
229229
}

0 commit comments

Comments
 (0)