diff --git a/tck/src/main/java/org/reactivestreams/tck/IdentityProcessorVerification.java b/tck/src/main/java/org/reactivestreams/tck/IdentityProcessorVerification.java index 025858c9..45f01fbb 100644 --- a/tck/src/main/java/org/reactivestreams/tck/IdentityProcessorVerification.java +++ b/tck/src/main/java/org/reactivestreams/tck/IdentityProcessorVerification.java @@ -342,8 +342,8 @@ public void untested_spec304_requestShouldNotPerformHeavyComputations() throws E } @Override @Test - public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation() throws Exception { - publisherVerification.untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation(); + public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation() throws Exception { + publisherVerification.untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation(); } @Override @Test diff --git a/tck/src/main/java/org/reactivestreams/tck/PublisherVerification.java b/tck/src/main/java/org/reactivestreams/tck/PublisherVerification.java index 7acfec9e..49709348 100644 --- a/tck/src/main/java/org/reactivestreams/tck/PublisherVerification.java +++ b/tck/src/main/java/org/reactivestreams/tck/PublisherVerification.java @@ -784,7 +784,7 @@ public void untested_spec304_requestShouldNotPerformHeavyComputations() throws E } @Override @Test - public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation() throws Exception { + public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation() throws Exception { notVerified(); // cannot be meaningfully tested, or can it? } diff --git a/tck/src/main/java/org/reactivestreams/tck/support/PublisherVerificationRules.java b/tck/src/main/java/org/reactivestreams/tck/support/PublisherVerificationRules.java index 392c184d..2441df32 100644 --- a/tck/src/main/java/org/reactivestreams/tck/support/PublisherVerificationRules.java +++ b/tck/src/main/java/org/reactivestreams/tck/support/PublisherVerificationRules.java @@ -420,7 +420,7 @@ public interface PublisherVerificationRules { *

* Verifies rule: 3.5 */ - void untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation() throws Exception; + void untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation() throws Exception; /** * Asks for a short {@code Publisher} (length 3) and verifies that cancelling without requesting anything, then requesting * items should result in no signals to be emitted.