Skip to content

Commit

Permalink
fix three left-over references to deleted rule 1:12
Browse files Browse the repository at this point in the history
  • Loading branch information
rkuhn committed Feb 17, 2015
1 parent 607da83 commit 29ccc42
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ public void run(Publisher<T> pub) throws Throwable {
});
}

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

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

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

0 comments on commit 29ccc42

Please sign in to comment.