Skip to content

Commit fb3472b

Browse files
committed
Non-BC for TCK: Corrects a typo in test method from *Compuatation to *Computation
1 parent f683f4d commit fb3472b

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
@@ -331,8 +331,8 @@ public void untested_spec304_requestShouldNotPerformHeavyComputations() throws E
331331
}
332332

333333
@Override @Test
334-
public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation() throws Exception {
335-
publisherVerification.untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation();
334+
public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation() throws Exception {
335+
publisherVerification.untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation();
336336
}
337337

338338
@Override @Test

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ public void untested_spec304_requestShouldNotPerformHeavyComputations() throws E
796796

797797
// Verifies rule: https://github.com/reactive-streams/reactive-streams-jvm#3.5
798798
@Override @Test
799-
public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation() throws Exception {
799+
public void untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation() throws Exception {
800800
notVerified(); // cannot be meaningfully tested, or can it?
801801
}
802802

Diff for: tck/src/main/java/org/reactivestreams/tck/support/PublisherVerificationRules.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public interface PublisherVerificationRules {
3232
void required_spec302_mustAllowSynchronousRequestCallsFromOnNextAndOnSubscribe() throws Throwable;
3333
void required_spec303_mustNotAllowUnboundedRecursion() throws Throwable;
3434
void untested_spec304_requestShouldNotPerformHeavyComputations() throws Exception;
35-
void untested_spec305_cancelMustNotSynchronouslyPerformHeavyCompuatation() throws Exception;
35+
void untested_spec305_cancelMustNotSynchronouslyPerformHeavyComputation() throws Exception;
3636
void required_spec306_afterSubscriptionIsCancelledRequestMustBeNops() throws Throwable;
3737
void required_spec307_afterSubscriptionIsCancelledAdditionalCancelationsMustBeNops() throws Throwable;
3838
void required_spec309_requestZeroMustSignalIllegalArgumentException() throws Throwable;

0 commit comments

Comments
 (0)