From 12bb94e8f12b5e1de10dfaa84dd06fdb9af59eaf Mon Sep 17 00:00:00 2001 From: James Roper Date: Mon, 19 Nov 2018 11:52:09 +1100 Subject: [PATCH] Fixed javadocs for skipStochasticTests Fixes #278. This was already fixed in a previous PR, but that PR failed to fix the javadocs for the IdentityProcessorVerification. --- .../reactivestreams/tck/IdentityProcessorVerification.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tck/src/main/java/org/reactivestreams/tck/IdentityProcessorVerification.java b/tck/src/main/java/org/reactivestreams/tck/IdentityProcessorVerification.java index 361e0821..59142bd4 100644 --- a/tck/src/main/java/org/reactivestreams/tck/IdentityProcessorVerification.java +++ b/tck/src/main/java/org/reactivestreams/tck/IdentityProcessorVerification.java @@ -172,7 +172,9 @@ public long boundedDepthOfOnNextAndRequestRecursion() { /** * Override and return {@code true} in order to skip executing tests marked as {@code Stochastic}. - * Such tests MAY sometimes fail even though the impl + * Stochastic in this case means that the Rule is impossible or infeasible to deterministically verify— + * usually this means that this test case can yield false positives ("be green") even if for some case, + * the given implementation may violate the tested behaviour. */ public boolean skipStochasticTests() { return false;