Skip to content

Commit 01341b9

Browse files
committed
Non-BC for TCK: Corrects a typo in test method from *Compuatation to *Computation
1 parent 241dbda commit 01341b9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -342,8 +342,8 @@ public void untested_spec304_requestShouldNotPerformHeavyComputations() throws E
342342
}
343343

344344
@Override @Test
345-
public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation() throws Exception {
346-
publisherVerification.untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation();
345+
public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation() throws Exception {
346+
publisherVerification.untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation();
347347
}
348348

349349
@Override @Test

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ public void untested_spec304_requestShouldNotPerformHeavyComputations() throws E
784784
}
785785

786786
@Override @Test
787-
public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation() throws Exception {
787+
public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation() throws Exception {
788788
notVerified(); // cannot be meaningfully tested, or can it?
789789
}
790790

tck/src/main/java/org/reactivestreams/tck/support/PublisherVerificationRules.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ public interface PublisherVerificationRules {
420420
* <p>
421421
* <b>Verifies rule:</b> <a href='https://github.com/reactive-streams/reactive-streams-jvm#3.5'>3.5</a>
422422
*/
423-
void untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation() throws Exception;
423+
void untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation() throws Exception;
424424
/**
425425
* Asks for a short {@code Publisher} (length 3) and verifies that cancelling without requesting anything, then requesting
426426
* items should result in no signals to be emitted.

0 commit comments

Comments
 (0)