Skip to content

Commit b3fef0f

Browse files
committed
Don't import org.reactivestreams.tck.TestEnvironment
1 parent 4e0ce72 commit b3fef0f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

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

+2-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
package org.reactivestreams.tck.support;
1313

14-
import org.reactivestreams.tck.TestEnvironment;
15-
1614
/**
1715
* Internal TCK use only.
1816
* Add / Remove tests for PublisherVerification here to make sure that they arre added/removed in the other places.
@@ -32,7 +30,7 @@ public interface PublisherVerificationRules {
3230
void required_validate_boundedDepthOfOnNextAndRequestRecursion() throws Exception;
3331
/**
3432
* Asks for a {@code Publisher} that should emit exaclty one item and complete (both within a
35-
* timeout specified by {@link TestEnvironment#defaultTimeoutMillis()}).
33+
* timeout specified by {@link org.reactivestreams.tck.TestEnvironment#defaultTimeoutMillis()}).
3634
* <p>The test is not executed if {@link org.reactivestreams.tck.PublisherVerification#maxElementsFromPublisher()} returns zero.
3735
* <p>This test mostly ensures that the {@code Publisher} implementation is actually operational.
3836
* If this test fails (likely with a timeout error), the following could be checked within the {@code Publisher} implementation:
@@ -52,7 +50,7 @@ public interface PublisherVerificationRules {
5250
void required_createPublisher1MustProduceAStreamOfExactly1Element() throws Throwable;
5351
/**
5452
* Asks for a {@code Publisher} that should emit exaclty three items and complete (all within a
55-
* timeout specified by {@link TestEnvironment#defaultTimeoutMillis()}).
53+
* timeout specified by {@link org.reactivestreams.tck.TestEnvironment#defaultTimeoutMillis()}).
5654
* <p>The test is not executed if {@link org.reactivestreams.tck.PublisherVerification#maxElementsFromPublisher()} is less than 3.
5755
* <p>This test mostly ensures that the {@code Publisher} implementation is actually operational.
5856
* If this test fails (likely with a timeout error), the following could be checked within the {@code Publisher} implementation:

0 commit comments

Comments
 (0)