Skip to content

Commit 2879ce0

Browse files
authored
Merge pull request #306 from reactive-streams/wip-compuatation-fix-√
Non-BC for TCK: Corrects a typo in test method from *Compuatation to …
2 parents 79527e6 + 01341b9 commit 2879ce0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: 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

Diff for: tck/src/main/java/org/reactivestreams/tck/PublisherVerification.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ public void untested_spec304_requestShouldNotPerformHeavyComputations() throws E
804804
}
805805

806806
@Override @Test
807-
public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation() throws Exception {
807+
public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation() throws Exception {
808808
notVerified(); // cannot be meaningfully tested, or can it?
809809
}
810810

Diff for: 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)