Skip to content

Commit 6b6d98b

Browse files
committed
=tck reactive-streams#128 TCK updated to reflect merged rules 2.13 and 2.14
1 parent 02d1704 commit 6b6d98b

File tree

3 files changed

+4
-21
lines changed

3 files changed

+4
-21
lines changed

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

+2-7
Original file line numberDiff line numberDiff line change
@@ -533,13 +533,8 @@ public void spec212_mustNotCallOnSubscribeMoreThanOnceBasedOnObjectEquality() th
533533
}
534534

535535
@Test
536-
public void spec213_failingOnCompleteInvocation() throws Exception {
537-
subscriberVerification.spec213_failingOnCompleteInvocation();
538-
}
539-
540-
@Test
541-
public void spec214_failingOnErrorInvocation() throws Exception {
542-
subscriberVerification.spec214_failingOnErrorInvocation();
536+
public void spec213_failingOnSignalInvocation() throws Exception {
537+
subscriberVerification.spec213_failingOnSignalInvocation();
543538
}
544539

545540
@Test

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

+1-7
Original file line numberDiff line numberDiff line change
@@ -287,13 +287,7 @@ public void spec212_blackbox_mustNotCallOnSubscribeMoreThanOnceBasedOnObjectEqua
287287

288288
// Verifies rule: https://github.com/reactive-streams/reactive-streams#2.13
289289
@NotVerified @Test
290-
public void spec213_blackbox_failingOnCompleteInvocation() throws Exception {
291-
notVerified(); // cannot be meaningfully tested, or can it?
292-
}
293-
294-
// Verifies rule: https://github.com/reactive-streams/reactive-streams#2.14
295-
@NotVerified @Test
296-
public void spec214_blackbox_failingOnErrorInvocation() throws Exception {
290+
public void spec213_blackbox_failingOnSignalInvocation() throws Exception {
297291
notVerified(); // cannot be meaningfully tested, or can it?
298292
}
299293

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

+1-7
Original file line numberDiff line numberDiff line change
@@ -358,13 +358,7 @@ public void run(WhiteboxTestStage stage) throws Exception {
358358

359359
// Verifies rule: https://github.com/reactive-streams/reactive-streams#2.13
360360
@NotVerified @Test
361-
public void spec213_failingOnCompleteInvocation() throws Exception {
362-
notVerified(); // cannot be meaningfully tested, or can it?
363-
}
364-
365-
// Verifies rule: https://github.com/reactive-streams/reactive-streams#2.14
366-
@NotVerified @Test
367-
public void spec214_failingOnErrorInvocation() throws Exception {
361+
public void spec213_failingOnSignalInvocation() throws Exception {
368362
notVerified(); // cannot be meaningfully tested, or can it?
369363
}
370364

0 commit comments

Comments
 (0)