Repository: commons-rng Updated Branches: refs/heads/master 65abc5dcf -> 954171567
No need to skip the test. Project: http://git-wip-us.apache.org/repos/asf/commons-rng/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-rng/commit/95417156 Tree: http://git-wip-us.apache.org/repos/asf/commons-rng/tree/95417156 Diff: http://git-wip-us.apache.org/repos/asf/commons-rng/diff/95417156 Branch: refs/heads/master Commit: 95417156731c05b899e9eaba53e3a83c2576b86e Parents: 65abc5d Author: Gilles <[email protected]> Authored: Fri Oct 5 00:40:43 2018 +0200 Committer: Gilles <[email protected]> Committed: Fri Oct 5 00:40:43 2018 +0200 ---------------------------------------------------------------------- .../apache/commons/rng/core/ProvidersCommonParametricTest.java | 3 --- 1 file changed, 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-rng/blob/95417156/commons-rng-core/src/test/java/org/apache/commons/rng/core/ProvidersCommonParametricTest.java ---------------------------------------------------------------------- diff --git a/commons-rng-core/src/test/java/org/apache/commons/rng/core/ProvidersCommonParametricTest.java b/commons-rng-core/src/test/java/org/apache/commons/rng/core/ProvidersCommonParametricTest.java index 922e9c9..00e27af 100644 --- a/commons-rng-core/src/test/java/org/apache/commons/rng/core/ProvidersCommonParametricTest.java +++ b/commons-rng-core/src/test/java/org/apache/commons/rng/core/ProvidersCommonParametricTest.java @@ -254,9 +254,6 @@ public class ProvidersCommonParametricTest { @Test(expected=IllegalStateException.class) public void testStateWrongSize() { - // We don't know what is the state of "java.lang.Random": skipping. - Assume.assumeTrue(generator.toString().indexOf("JDKRandom") == -1); - final RandomProviderState state = new DummyGenerator().saveState(); // Try to restore with an invalid state (wrong size). generator.restoreState(state);
