From f672e826f51824582273fa1f5b6ec37aa5fdb2fd Mon Sep 17 00:00:00 2001 From: Rob Tompkins Date: Sun, 9 Oct 2016 16:23:08 -0400 Subject: [PATCH] MATH-1387: adding RetryRunner to RandomUtilsDataGeneratorJDKSecureRandomTest --- .../random/RandomUtilsDataGeneratorJDKSecureRandomTest.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/test/java/org/apache/commons/math4/random/RandomUtilsDataGeneratorJDKSecureRandomTest.java b/src/test/java/org/apache/commons/math4/random/RandomUtilsDataGeneratorJDKSecureRandomTest.java index cd4696b5d..beba1174e 100644 --- a/src/test/java/org/apache/commons/math4/random/RandomUtilsDataGeneratorJDKSecureRandomTest.java +++ b/src/test/java/org/apache/commons/math4/random/RandomUtilsDataGeneratorJDKSecureRandomTest.java @@ -16,12 +16,16 @@ */ package org.apache.commons.math4.random; +import org.apache.commons.math4.RetryRunner; +import org.junit.runner.RunWith; + import java.security.SecureRandom; /** * Test cases for the {@link RandomUtils#DataGenerator} class, using * {@link SecureRandom} as the underlying source of randomness. */ +@RunWith(RetryRunner.class) public class RandomUtilsDataGeneratorJDKSecureRandomTest extends RandomUtilsDataGeneratorAbstractTest {