Skip to content

Commit

Permalink
remove test comments
Browse files Browse the repository at this point in the history
  • Loading branch information
esaulpaugh committed Sep 6, 2022
1 parent 7dfb23c commit d27c778
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/test/java/com/esaulpaugh/headlong/abi/MonteCarloTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@
public class MonteCarloTest {

@Disabled("high memory")
@Test // (88642710261245591L,4,4,4,4
public void testRepro() { // (245781902350714877L,5,5,5,4
Random instance = new Random(); // (1847095625529912080L,5,5,5,4
MessageDigest md = Function.newDefaultDigest(); // (-2049532359701068182L,4,4,4,4
@Test
public void testRepro() {
Random instance = new Random();
MessageDigest md = Function.newDefaultDigest();
MonteCarloTestCase testCase = new MonteCarloTestCase(
3239653448104147572L,
new MonteCarloTestCase.Limits(4, 3, 5, 4),
instance,
md
);
repro(testCase, true); // (3239653448104147572L,4,3,5,4)
repro(testCase, true);
}

private static void repro(MonteCarloTestCase testCase, boolean run) {
Expand Down

0 comments on commit d27c778

Please sign in to comment.