Skip to content

Commit 29ccc42

Browse files
committed
fix three left-over references to deleted rule 1:12
1 parent 607da83 commit 29ccc42

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ public void run(Publisher<T> pub) throws Throwable {
549549
});
550550
}
551551

552-
// Verifies rule: https://github.com/reactive-streams/reactive-streams#1.12
552+
// Verifies rule: https://github.com/reactive-streams/reactive-streams#1.11
553553
@Override @Test
554554
public void optional_spec111_multicast_mustProduceTheSameElementsInTheSameSequenceToAllOfItsSubscribersWhenRequestingOneByOne() throws Throwable {
555555
optionalActivePublisherTest(5, true, new PublisherTestRun<T>() { // This test is skipped if the publisher is unbounded (never sends onComplete)
@@ -600,7 +600,7 @@ public void run(Publisher<T> pub) throws InterruptedException {
600600
});
601601
}
602602

603-
// Verifies rule: https://github.com/reactive-streams/reactive-streams#1.12
603+
// Verifies rule: https://github.com/reactive-streams/reactive-streams#1.11
604604
@Override @Test
605605
public void optional_spec111_multicast_mustProduceTheSameElementsInTheSameSequenceToAllOfItsSubscribersWhenRequestingManyUpfront() throws Throwable {
606606
optionalActivePublisherTest(3, false, new PublisherTestRun<T>() { // This test is skipped if the publisher cannot produce enough elements
@@ -633,7 +633,7 @@ public void run(Publisher<T> pub) throws Throwable {
633633
});
634634
}
635635

636-
// Verifies rule: https://github.com/reactive-streams/reactive-streams#1.12
636+
// Verifies rule: https://github.com/reactive-streams/reactive-streams#1.11
637637
@Override @Test
638638
public void optional_spec111_multicast_mustProduceTheSameElementsInTheSameSequenceToAllOfItsSubscribersWhenRequestingManyUpfrontAndCompleteAsExpected() throws Throwable {
639639
optionalActivePublisherTest(3, true, new PublisherTestRun<T>() { // This test is skipped if the publisher is unbounded (never sends onComplete)

0 commit comments

Comments
 (0)