Skip to content

Commit 37eaddb

Browse files
committed
Fix long jump method reference used in test
1 parent e89f37c commit 37eaddb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

commons-rng-core/src/test/java/org/apache/commons/rng/core/JumpableProvidersParametricTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ private static Iterable<JumpableUniformRandomProvider> getJumpableProviders() {
6464
private static TestJumpFunction getLongJumpFunction(JumpableUniformRandomProvider generator) {
6565
Assumptions.assumeTrue(generator instanceof LongJumpableUniformRandomProvider, "No long jump function");
6666
final LongJumpableUniformRandomProvider rng2 = (LongJumpableUniformRandomProvider) generator;
67-
return rng2::jump;
67+
return rng2::longJump;
6868
}
6969

7070
/**

0 commit comments

Comments
 (0)